diff --git a/.ai/claude.prompt.md b/.ai/claude.prompt.md
new file mode 100644
index 0000000000000000000000000000000000000000..729ae53fff144016c1015f40443d5dbda37fada8
--- /dev/null
+++ b/.ai/claude.prompt.md
@@ -0,0 +1,9 @@
+## About This File
+
+This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
+
+## 1. Project Context
+Here is the essential context for our project. Please read and understand it thoroughly.
+
+### Project Overview
+@./context/overview.md
diff --git a/.ai/codex.prompt.md b/.ai/codex.prompt.md
new file mode 100644
index 0000000000000000000000000000000000000000..f2901369b265fe32db70788dd72466bbff89e627
--- /dev/null
+++ b/.ai/codex.prompt.md
@@ -0,0 +1,27 @@
+## About This File
+
+This file provides guidance to Codex CLI when working with code in this repository.
+
+## Guidelines
+
+### Coding Style & Naming Conventions
+- Style: PEP 8, 4âspace indentation, limit lines to ~120 chars.
+- Naming: snake_case for files/functions (`*_train_network.py`, `*_generate_*`), PascalCase for classes.
+- Types/Docs: Prefer type hints for public APIs and short docstrings describing args/returns.
+- Formatting: No formatter configured; keep diffs small and consistent with surrounding code.
+
+### Testing Guidelines
+- Current state: No formal test suite.
+- If adding tests, use `pytest`, place under `tests/` mirroring `src/musubi_tuner/` and name files `test_*.py`.
+- Run (uv): `uv run pytest -q`. Run (pip): `pytest -q`.
+- Prefer small, deterministic unit tests around data utilities and argument parsing.
+
+### Commit & Pull Request Guidelines
+- Commits: Use Conventional Commit style seen in history (`feat:`, `fix:`, `doc:`). Write clear, scoped messages.
+- PRs: Include a summary, rationale, linked issue(s), and reproduction commands (e.g., the exact `python ... --args`). Add screenshots/log snippets when relevant.
+- Docs: Update related files in `docs/` when changing behavior or flags.
+
+### Security & Configuration Tips
+- Large files: Do not commit datasets, model weights, or logs (`logs/` is ignored). Use external storage.
+- Credentials: Keep any tokens/keys out of the repo and environmentâspecific.
+- CUDA: Choose the matching extra (`cu124`, `cu128` or `cu130`) for your driver; verify with `torch.cuda.is_available()`.
diff --git a/.ai/context/overview.md b/.ai/context/overview.md
new file mode 100644
index 0000000000000000000000000000000000000000..0da4367b98478c2350237f8af8996b5b5e54402f
--- /dev/null
+++ b/.ai/context/overview.md
@@ -0,0 +1,103 @@
+# overview.md
+
+This file provides guidance to developers when working with code in this repository.
+
+## Project Overview
+
+Musubi Tuner is a Python-based training framework for LoRA (Low-Rank Adaptation) models with multiple video generation architectures including HunyuanVideo, HunyuanVideo 1.5, Wan2.1/2.2, FramePack, FLUX.1 Kontext/FLUX.2, Z-Image and Qwen-Image/Qwen-Image-Edit series/Qwen-Image-Layered. The project focuses on memory-efficient training and inference for video generation models.
+
+## Installation and Environment
+
+The project uses `pyproject.toml` for dependency management with both pip and uv (experimental) installation methods:
+
+- **pip installation**: `pip install -e .` after installing PyTorch with CUDA support
+- **uv installation**: `uv run --extra cu124` (or `cu128`, `cu130`) (uv installation is experimental)
+- **Python requirement**: 3.10 or later (verified with 3.10)
+- **PyTorch requirement**: 2.5.1 or later
+
+Optional dependencies include `ascii-magic`, `matplotlib`, `tensorboard`, and `prompt-toolkit`.
+
+## Common Development Commands
+
+### Dataset Preparation
+```bash
+# Cache latents (required before training)
+python src/musubi_tuner/cache_latents.py --dataset_config path/to/toml --vae path/to/vae --vae_chunk_size 32 --vae_tiling
+
+# Cache text encoder outputs (required before training)
+python src/musubi_tuner/cache_text_encoder_outputs.py --dataset_config path/to/toml --text_encoder1 path/to/te1 --text_encoder2 path/to/te2 --batch_size 16
+```
+
+`wan_cache_latents.py`, `qwen_image_cache_latents.py` etc. are similar for other architectures.
+
+### Training Commands
+```bash
+# HunyuanVideo training
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --dit path/to/dit --dataset_config path/to/toml --network_module networks.lora --network_dim 32
+```
+
+`wan_train_network.py`, `qwen_image_train_network.py` etc. are similar for other architectures.
+
+Full fine-tuning is also supported for Qwen-Image series with a separate script `qwen_image_train.py` and appropriate arguments.
+
+### Inference Commands
+```bash
+# HunyuanVideo inference
+python src/musubi_tuner/hv_generate_video.py --fp8 --video_size 544 960 --video_length 5 --prompt "text" --dit path/to/dit --vae path/to/vae
+```
+
+`wan_generate_video.py`, `qwen_image_generate.py` etc. are similar for other architectures.
+
+### Utility Commands
+```bash
+# Merge LoRA weights
+python src/musubi_tuner/merge_lora.py --dit path/to/dit --lora_weight path/to/lora.safetensors --save_merged_model path/to/output
+
+# Convert LoRA formats
+python src/musubi_tuner/convert_lora.py --input path/to/lora.safetensors --output path/to/converted.safetensors --target other
+
+# Post-hoc EMA for LoRA
+python src/musubi_tuner/lora_post_hoc_ema.py [args]
+```
+
+### Testing and Development
+No formal test suite is present in this repository. The project relies on manual testing through the training and inference scripts.
+
+## Code Architecture
+
+### Core Structure
+- `src/musubi_tuner/`: Main package containing all training and inference scripts
+- `src/musubi_tuner/dataset/`: Dataset configuration and loading utilities
+- `src/musubi_tuner/modules/`: Model architectures and components
+- `src/musubi_tuner/networks/`: LoRA network implementations for different architectures
+- `src/musubi_tuner/utils/`: Common utilities for model handling, device management, etc.
+
+### Architecture-Specific Modules
+- `hunyuan_model/`: HunyuanVideo model implementation and utilities
+- `wan/`: Wan2.1/2.2 model configurations and modules
+- `qwen_image/`: Qwen-Image model utilities
+- ... and others for FramePack, FLUX, Z-Image
+
+### Key Components
+- **Dataset Configuration**: Uses TOML files for complex dataset setups supporting images, videos, control images, and metadata JSONL files
+- **Memory Optimization**: Supports fp8 precision, block swapping, and various attention mechanisms (SDPA, FlashAttention, SageAttention, xformers)
+- **Multi-Architecture Support**: Each architecture has its own training/inference scripts with shared utilities
+- **LoRA Networks**: Modular LoRA implementations with support for different target modules and configurations
+
+### Configuration System
+- Dataset configuration uses TOML format with support for multiple datasets, bucketing, and architecture-specific settings
+- Training configuration via command line arguments and accelerate config
+- Support for advanced features like timestep sampling, discrete flow shift, and memory-saving options
+
+### Memory Management
+- Aggressive memory optimization with options like `--blocks_to_swap`, `--fp8_base`, `--fp8_llm`
+- VAE tiling or chunking support for handling large resolutions (depending on architecture)
+- Gradient checkpointing and mixed precision training
+- Block-swap (offloading weights to CPU) for large models
+
+## Development Notes
+- The project is under active development with experimental features
+- No formal CI/CD or automated testing
+- Uses accelerate for distributed training setup
+- Supports both interactive and batch inference modes
+- Comprehensive documentation in `docs/` directory for advanced configurations and architecture-specific guides
\ No newline at end of file
diff --git a/.ai/gemini.prompt.md b/.ai/gemini.prompt.md
new file mode 100644
index 0000000000000000000000000000000000000000..9ea380193854a9f3d66f049859816b722d527a5d
--- /dev/null
+++ b/.ai/gemini.prompt.md
@@ -0,0 +1,9 @@
+## About This File
+
+This file provides guidance to Gemini CLI (https://github.com/google-gemini/gemini-cli) when working with code in this repository.
+
+## 1. Project Context
+Here is the essential context for our project. Please read and understand it thoroughly.
+
+### Project Overview
+@./context/overview.md
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5b08f44140f62bf2cca4cc5c0770ca320607dbca
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,3 @@
+# These are supported funding model platforms
+
+github: kohya-ss
diff --git a/.github/workflows/ruff-lint.yml b/.github/workflows/ruff-lint.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3b2a9120e28c7ac1019817c1095ede044afb98c9
--- /dev/null
+++ b/.github/workflows/ruff-lint.yml
@@ -0,0 +1,48 @@
+name: Ruff Lint
+
+on:
+ pull_request:
+ branches:
+ - main
+ push:
+ paths:
+ - "src/musubi_tuner/**/*.py"
+ - "src/musubi_tuner/**/*.pth"
+ - ".python-version"
+ - "pyproject.toml"
+ workflow_dispatch:
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: "Set up Python"
+ uses: actions/setup-python@v5
+ with:
+ python-version-file: ".python-version"
+
+ - name: "Install uv"
+ uses: astral-sh/setup-uv@v6
+ with:
+ enable-cache: true
+
+ - name: Install the project
+ run: uv sync --dev
+
+ - name: "Run Ruff check"
+ uses: astral-sh/ruff-action@v3
+ with:
+ args: >
+ check --fix
+
+ - name: "Run Ruff format check"
+ uses: astral-sh/ruff-action@v3
+ with:
+ args: >
+ format --check
+ # will exit with a non-zero code if there are formatting changes
+
+ # - name: Minimize uv cache
+ # run: uv cache prune --ci
diff --git a/.ipynb_checkpoints/run_cache-checkpoint.sh b/.ipynb_checkpoints/run_cache-checkpoint.sh
new file mode 100644
index 0000000000000000000000000000000000000000..72132e509d0b309ba6181ce05e9480cf1b578071
--- /dev/null
+++ b/.ipynb_checkpoints/run_cache-checkpoint.sh
@@ -0,0 +1,70 @@
+cd /workspace/musubi-tuner || echo "Failed to open directory"
+
+LATENT_BATCH_SIZE=12
+LATENT_NUM_WORKERS=6
+
+TEXT_BATCH_SIZE=1
+TEXT_NUM_WORKERS=1
+
+mkdir -p logs
+
+latent_pids=()
+
+for i in 0 1 2 3 4 5 6 7; do
+ CUDA_VISIBLE_DEVICES=$i python -m musubi_tuner.ltx2_cache_latents \
+ --dataset_config "train/ltxxx_gpu${i}.toml" \
+ --ltx2_checkpoint "$LTX2_CKPT" \
+ --device cuda \
+ --vae_dtype bf16 \
+ --ltx2_mode av \
+ --ltx2_audio_source video \
+ --batch_size "$LATENT_BATCH_SIZE" \
+ --num_workers "$LATENT_NUM_WORKERS" \
+ --skip_existing \
+ > "logs/ltx2_cache_latents_gpu${i}.log" 2>&1 &
+ latent_pids+=($!)
+done
+
+latent_failed=0
+for pid in "${latent_pids[@]}"; do
+ if ! wait "$pid"; then
+ latent_failed=1
+ fi
+done
+
+if[ "$latent_failed" -ne 0 ]; then
+ echo "Latent caching failed on at least one GPU. Check logs/ltx2_cache_latents_gpu*.log"
+else
+ echo "Latent caching finished successfully on all 8 GPUs. Starting text cache..."
+
+ text_pids=()
+
+ for i in 0 1 2 3 4 5 6 7; do
+ CUDA_VISIBLE_DEVICES=$i python -m musubi_tuner.ltx2_cache_text_encoder_outputs \
+ --dataset_config "train/ltxxx_gpu${i}.toml" \
+ --ltx2_checkpoint "$LTX2_CKPT" \
+ --gemma_root "$GEMMA_ROOT" \
+ --gemma_load_in_8bit \
+ --device cuda \
+ --mixed_precision bf16 \
+ --ltx2_mode av \
+ --batch_size "$TEXT_BATCH_SIZE" \
+ --num_workers "$TEXT_NUM_WORKERS" \
+ --skip_existing \
+ > "logs/ltx2_cache_text_gpu${i}.log" 2>&1 &
+ text_pids+=($!)
+ done
+
+ text_failed=0
+ for pid in "${text_pids[@]}"; do
+ if ! wait "$pid"; then
+ text_failed=1
+ fi
+ done
+
+ if[ "$text_failed" -ne 0 ]; then
+ echo "Text caching failed on at least one GPU. Check logs/ltx2_cache_text_gpu*.log"
+ else
+ echo "Latent cache and text cache both completed successfully."
+ fi
+fi
\ No newline at end of file
diff --git a/.venv/pyvenv.cfg b/.venv/pyvenv.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..2ee91b2be9a8f5a496207619c58caddd5359e81f
--- /dev/null
+++ b/.venv/pyvenv.cfg
@@ -0,0 +1,5 @@
+home = /venv/main/bin
+include-system-site-packages = false
+version = 3.12.13
+executable = /venv/main/bin/python3.12
+command = /venv/main/bin/python3 -m venv /workspace/musubi-tuner/.venv
diff --git a/docs/advanced_config.md b/docs/advanced_config.md
new file mode 100644
index 0000000000000000000000000000000000000000..a94f008dfb9a8bb6fc0b5e20fb51c64341edb18e
--- /dev/null
+++ b/docs/advanced_config.md
@@ -0,0 +1,831 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# Advanced configuration / é«åºŠãªèšå®
+
+## Table of contents / ç®æ¬¡
+
+- [Using configuration files to specify training options](#using-configuration-files-to-specify-training-options--èšå®ãã¡ã€ã«ã䜿çšããåŠç¿ãªãã·ã§ã³ã®æå®)
+- [How to specify `network_args`](#how-to-specify-network_args--network_argsã®æå®æ¹æ³)
+- [LoRA+](#lora)
+- [Select the target modules of LoRA](#select-the-target-modules-of-lora--loraã®å¯Ÿè±¡ã¢ãžã¥ãŒã«ãéžæãã)
+- [Save and view logs in TensorBoard format](#save-and-view-logs-in-tensorboard-format--tensorboard圢åŒã®ãã°ã®ä¿åãšåç
§)
+- [Save and view logs in wandb](#save-and-view-logs-in-wandb--wandbã§ãã°ã®ä¿åãšåç
§)
+- [FP8 weight optimization for models](#fp8-weight-optimization-for-models--ã¢ãã«ã®éã¿ã®fp8ãžã®æé©å)
+- [PyTorch Dynamo optimization for model training](#pytorch-dynamo-optimization-for-model-training--ã¢ãã«ã®åŠç¿ã«ãããpytorch-dynamoã®æé©å)
+- [MagCache](#magcache)
+- [Style-Friendly SNR Sampler](#style-friendly-snr-sampler)
+- [Specify time step range for training](#specify-time-step-range-for-training--åŠç¿æã®ã¿ã€ã ã¹ãããç¯å²ã®æå®)
+- [Timestep Bucketing for Uniform Sampling](#timestep-bucketing-for-uniform-sampling--åäžãªãµã³ããªã³ã°ã®ããã®timestep-bucketing)
+- [Schedule Free Optimizer](#schedule-free-optimizer--ã¹ã±ãžã¥ãŒã«ããªãŒãªããã£ãã€ã¶)
+
+[Post-Hoc EMA merging for LoRA](tools.md#lora-post-hoc-ema-merging--loraã®post-hoc-emaããŒãž) is described in the [Tools](tools.md) document.
+
+## Using configuration files to specify training options / èšå®ãã¡ã€ã«ã䜿çšããåŠç¿ãªãã·ã§ã³ã®æå®
+
+Instead of specifying all training options on the command line, you can use a `.toml` configuration file to specify them. This can make it easier to manage and reuse training configurations.
+
+Specify the configuration file with the `--config_file` option. The `.toml` extension can be omitted.
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --config_file config.toml
+```
+
+The configuration file is a TOML file that can contain any of the command-line options. The file can be organized into sections for readability, but all sections are flattened when parsed, so the section names are ignored.
+
+
+æ¥æ¬èª
+
+ãã¹ãŠã®åŠç¿ãªãã·ã§ã³ãã³ãã³ãã©ã€ã³ã§æå®ãã代ããã«ã`.toml`èšå®ãã¡ã€ã«ã䜿çšããŠæå®ããããšãã§ããŸããããã«ãããåŠç¿èšå®ã®ç®¡çãåå©çšã容æã«ãªããŸãã
+
+`--config_file`ãªãã·ã§ã³ã§èšå®ãã¡ã€ã«ãæå®ããŸãã`.toml`æ¡åŒµåã¯çç¥ã§ããŸãã
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --config_file config.toml
+```
+
+èšå®ãã¡ã€ã«ã¯ãã³ãã³ãã©ã€ã³ãªãã·ã§ã³ã®ãããããå«ãããšãã§ããTOMLãã¡ã€ã«ã§ãããã¡ã€ã«ã¯èªã¿ãããã®ããã«ã»ã¯ã·ã§ã³ã«åããããšãã§ããŸãããè§£ææã«ãã¹ãŠã®ã»ã¯ã·ã§ã³ããã©ããåããããããã»ã¯ã·ã§ã³åã¯ç¡èŠãããŸãã
+
+
+
+### Example configuration file / èšå®ãã¡ã€ã«ã®äŸ
+
+```toml
+# config.toml
+dit = "/path/to/dit"
+dataset_config = "/path/to/dataset.toml"
+network_module = "networks.lora"
+network_dim = 32
+network_alpha = 16
+
+[optimizer]
+optimizer_type = "AdamW"
+learning_rate = 1e-4
+
+[training]
+max_train_epochs = 10
+save_every_n_epochs = 2
+mixed_precision = "bf16"
+
+[output]
+output_dir = "/path/to/output"
+output_name = "my_lora"
+logging_dir = "./logs"
+```
+
+All options can be specified in the top level or within sections. When parsed, the section structure is ignored and all key-value pairs are combined into a single namespace.
+
+Options specified on the command line will override those in the configuration file.
+
+```bash
+# This will use the config file but override the learning_rate
+accelerate launch --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --config_file config --learning_rate 2e-4
+```
+
+
+æ¥æ¬èª
+
+ãã¹ãŠã®ãªãã·ã§ã³ã¯ããããã¬ãã«ãŸãã¯ã»ã¯ã·ã§ã³å
ã«æå®ã§ããŸããè§£ææã«ã¯ãã»ã¯ã·ã§ã³æ§é ã¯ç¡èŠããããã¹ãŠã®ããŒãšå€ã®ãã¢ãåäžã®ããŒã ã¹ããŒã¹ã«çµåãããŸãã
+
+ã³ãã³ãã©ã€ã³ã§æå®ããããªãã·ã§ã³ã¯ãèšå®ãã¡ã€ã«ã®ãªãã·ã§ã³ãäžæžãããŸãã
+
+```bash
+# èšå®ãã¡ã€ã«ã䜿çšããŸãããlearning_rateãäžæžãããŸã
+accelerate launch --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --config_file config --learning_rate 2e-4
+```
+
+
+
+## How to specify `network_args` / `network_args`ã®æå®æ¹æ³
+
+The `--network_args` option is an option for specifying detailed arguments to LoRA. Specify the arguments in the form of `key=value` in `--network_args`.
+
+
+æ¥æ¬èª
+`--network_args`ãªãã·ã§ã³ã¯ãLoRAãžã®è©³çްãªåŒæ°ãæå®ããããã®ãªãã·ã§ã³ã§ãã`--network_args`ã«ã¯ã`key=value`ã®åœ¢åŒã§åŒæ°ãæå®ããŸãã
+
+
+### Example / èšè¿°äŸ
+
+If you specify it on the command line, write as follows. / ã³ãã³ãã©ã€ã³ã§æå®ããå Žåã¯ä»¥äžã®ããã«èšè¿°ããŸãã
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --dit ...
+ --network_module networks.lora --network_dim 32
+ --network_args "key1=value1" "key2=value2" ...
+```
+
+If you specify it in the configuration file, write as follows. / èšå®ãã¡ã€ã«ã§æå®ããå Žåã¯ä»¥äžã®ããã«èšè¿°ããŸãã
+
+```toml
+network_args = ["key1=value1", "key2=value2", ...]
+```
+
+If you specify `"verbose=True"`, detailed information of LoRA will be displayed. / `"verbose=True"`ãæå®ãããšLoRAã®è©³çŽ°ãªæ
å ±ã衚瀺ãããŸãã
+
+```bash
+--network_args "verbose=True" "key1=value1" "key2=value2" ...
+```
+
+## LoRA+
+
+LoRA+ is a method to improve the training speed by increasing the learning rate of the UP side (LoRA-B) of LoRA. Specify the multiplier for the learning rate. The original paper recommends 16, but adjust as needed. It seems to be good to start from around 4. For details, please refer to the [related PR of sd-scripts](https://github.com/kohya-ss/sd-scripts/pull/1233).
+
+Specify `loraplus_lr_ratio` with `--network_args`.
+
+
+æ¥æ¬èª
+
+LoRA+ã¯ãLoRAã®UPåŽïŒLoRA-BïŒã®åŠç¿çãäžããããšã§åŠç¿é床ãåäžãããææ³ã§ããåŠç¿çã«å¯Ÿããåçãæå®ããŸããå
è«æã§ã¯16ãæšå¥šããŠããŸãããå¿
èŠã«å¿ããŠèª¿æŽããŠãã ããã4çšåºŠããå§ãããšããããã§ãã詳现ã¯[sd-scriptsã®é¢é£PR]https://github.com/kohya-ss/sd-scripts/pull/1233)ãåç
§ããŠãã ããã
+
+`--network_args`ã§`loraplus_lr_ratio`ãæå®ããŸãã
+
+
+### Example / èšè¿°äŸ
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py --dit ...
+ --network_module networks.lora --network_dim 32 --network_args "loraplus_lr_ratio=4" ...
+```
+
+## Select the target modules of LoRA / LoRAã®å¯Ÿè±¡ã¢ãžã¥ãŒã«ãéžæãã
+
+*This feature is highly experimental and the specification may change. / ãã®æ©èœã¯ç¹ã«å®éšçãªãã®ã§ã仿§ã¯å€æŽãããå¯èœæ§ããããŸãã*
+
+By specifying `exclude_patterns` and `include_patterns` with `--network_args`, you can select the target modules of LoRA.
+
+`exclude_patterns` excludes modules that match the specified pattern. `include_patterns` targets only modules that match the specified pattern.
+
+Specify the values as a list. For example, `"exclude_patterns=[r'.*single_blocks.*', r'.*double_blocks\.[0-9]\..*']"`.
+
+The pattern is a regular expression for the module name. The module name is in the form of `double_blocks.0.img_mod.linear` or `single_blocks.39.modulation.linear`. The regular expression is not a partial match but a complete match.
+
+The patterns are applied in the order of `exclude_patterns`â`include_patterns`. By default, the Linear layers of `img_mod`, `txt_mod`, and `modulation` of double blocks and single blocks are excluded.
+
+(`.*(img_mod|txt_mod|modulation).*` is specified.)
+
+
+æ¥æ¬èª
+
+`--network_args`ã§`exclude_patterns`ãš`include_patterns`ãæå®ããããšã§ãLoRAã®å¯Ÿè±¡ã¢ãžã¥ãŒã«ãéžæããããšãã§ããŸãã
+
+`exclude_patterns`ã¯ãæå®ãããã¿ãŒã³ã«äžèŽããã¢ãžã¥ãŒã«ãé€å€ããŸãã`include_patterns`ã¯ãæå®ãããã¿ãŒã³ã«äžèŽããã¢ãžã¥ãŒã«ã®ã¿ã察象ãšããŸãã
+
+å€ã¯ããªã¹ãã§æå®ããŸãã`"exclude_patterns=[r'.*single_blocks.*', r'.*double_blocks\.[0-9]\..*']"`ã®ããã«ãªããŸãã
+
+ãã¿ãŒã³ã¯ãã¢ãžã¥ãŒã«åã«å¯Ÿããæ£èŠè¡šçŸã§ããã¢ãžã¥ãŒã«åã¯ãããšãã°`double_blocks.0.img_mod.linear`ã`single_blocks.39.modulation.linear`ã®ãããªåœ¢åŒã§ããæ£èŠè¡šçŸã¯éšåäžèŽã§ã¯ãªãå®å
šäžèŽã§ãã
+
+ãã¿ãŒã³ã¯ã`exclude_patterns`â`include_patterns`ã®é ã§é©çšãããŸããããã©ã«ãã¯ãdouble blocksãšsingle blocksã®Linearå±€ã®ãã¡ã`img_mod`ã`txt_mod`ã`modulation`ãé€å€ãããŠããŸãã
+
+ïŒ`.*(img_mod|txt_mod|modulation).*`ãæå®ãããŠããŸããïŒ
+
+
+### Example / èšè¿°äŸ
+
+Only the modules of double blocks / double blocksã®ã¢ãžã¥ãŒã«ã®ã¿ã察象ãšããå Žå:
+
+```bash
+--network_args "exclude_patterns=[r'.*single_blocks.*']"
+```
+
+Only the modules of single blocks from the 10th / single blocksã®10çªç®ä»¥éã®Linearã¢ãžã¥ãŒã«ã®ã¿ã察象ãšããå Žå:
+
+```bash
+--network_args "exclude_patterns=[r'.*']" "include_patterns=[r'.*single_blocks\.\d{2}\.linear.*']"
+```
+
+## Save and view logs in TensorBoard format / TensorBoard圢åŒã®ãã°ã®ä¿åãšåç
§
+
+Specify the folder to save the logs with the `--logging_dir` option. Logs in TensorBoard format will be saved.
+
+For example, if you specify `--logging_dir=logs`, a `logs` folder will be created in the working folder, and logs will be saved in the date folder inside it.
+
+Also, if you specify the `--log_prefix` option, the specified string will be added before the date. For example, use `--logging_dir=logs --log_prefix=lora_setting1_` for identification.
+
+To view logs in TensorBoard, open another command prompt and activate the virtual environment. Then enter the following in the working folder.
+
+```powershell
+tensorboard --logdir=logs
+```
+
+(tensorboard installation is required.)
+
+Then open a browser and access http://localhost:6006/ to display it.
+
+
+æ¥æ¬èª
+`--logging_dir`ãªãã·ã§ã³ã«ãã°ä¿åå
ãã©ã«ããæå®ããŠãã ãããTensorBoard圢åŒã®ãã°ãä¿åãããŸãã
+
+ããšãã°`--logging_dir=logs`ãšæå®ãããšãäœæ¥ãã©ã«ãã«logsãã©ã«ããäœæããããã®äžã®æ¥æãã©ã«ãã«ãã°ãä¿åãããŸãã
+
+ãŸã`--log_prefix`ãªãã·ã§ã³ãæå®ãããšãæ¥æã®åã«æå®ããæååã远å ãããŸãã`--logging_dir=logs --log_prefix=lora_setting1_`ãªã©ãšããŠèå¥çšã«ã䜿ããã ããã
+
+TensorBoardã§ãã°ã確èªããã«ã¯ãå¥ã®ã³ãã³ãããã³ãããéããä»®æ³ç°å¢ãæå¹ã«ããŠãããäœæ¥ãã©ã«ãã§ä»¥äžã®ããã«å
¥åããŸãã
+
+```powershell
+tensorboard --logdir=logs
+```
+
+ïŒtensorboardã®ã€ã³ã¹ããŒã«ãå¿
èŠã§ããïŒ
+
+ãã®åŸãã©ãŠã¶ãéããhttp://localhost:6006/ ãžã¢ã¯ã»ã¹ãããšè¡šç€ºãããŸãã
+
+
+## Save and view logs in wandb / wandbã§ãã°ã®ä¿åãšåç
§
+
+`--log_with wandb` option is available to save logs in wandb format. `tensorboard` or `all` is also available. The default is `tensorboard`.
+
+Specify the project name with `--log_tracker_name` when using wandb.
+
+
+æ¥æ¬èª
+`--log_with wandb`ãªãã·ã§ã³ãæå®ãããšwandb圢åŒã§ãã°ãä¿åããããšãã§ããŸãã`tensorboard`ã`all`ãæå®å¯èœã§ããããã©ã«ãã¯`tensorboard`ã§ãã
+
+wandbã䜿çšããå Žåã¯ã`--log_tracker_name`ã§ãããžã§ã¯ãåãæå®ããŠãã ããã
+
+
+## FP8 weight optimization for models / ã¢ãã«ã®éã¿ã®FP8ãžã®æé©å
+
+The `--fp8_scaled` option performs an offline optimization pass that rewrites selected Linear weights into FP8 (E4M3) with block-wise scaling. Compared with the legacy `--fp8` cast, it reduces VRAM usage while maintaining relatively high precision.
+
+From v0.2.12, block-wise scaling is supported instead of per-tensor scaling, allowing for higher precision quantization.
+
+This flow dequantizes back the weights to the FP16/BF16/FP32 weights during the forward path, and computes in FP16/BF16/FP32. The shared routines live in `src/musubi_tuner/modules/fp8_optimization_utils.py` and are wired into the Wan2.x, FramePack, FLUX.1 Kontext, and Qwen-Image pipelines (except HunyuanVideo, which `--fp8_scaled` is not supported).
+
+Acknowledgments: This idea is based on the [implementation](https://github.com/Tencent/HunyuanVideo/blob/7df4a45c7e424a3f6cd7d653a7ff1f60cddc1eb1/hyvideo/modules/fp8_optimization.py) of [HunyuanVideo](https://github.com/Tencent/HunyuanVideo). The selection of high-precision modules is referenced from the [implementation](https://github.com/tdrussell/diffusion-pipe/blob/407c04fdae1c9ab5e67b54d33bef62c3e0a8dbc7/models/wan.py) of [diffusion-pipe](https://github.com/tdrussell/diffusion-pipe). I would like to thank these repositories.
+
+
+æ¥æ¬èª
+
+`--fp8_scaled` ãªãã·ã§ã³ã¯ã察象㮠Linear å±€ã®éã¿ããblockããšã«é©åãªåçã§ã¹ã±ãŒãªã³ã°ãã FP8 (E4M3) ã«æžãæããååŠçãå®è¡ããŸããåŸæ¥ã® `--fp8` ã«ããåçŽãªãã£ã¹ããšæ¯ã¹ãŠãå
ã®ç²ŸåºŠãæ¯èŒçä¿ã£ããŸãŸ VRAM ãåæžã§ããŸãã
+
+v0.2.12ããããã³ãœã«ããšã®ã¹ã±ãŒãªã³ã°ã§ã¯ãªãããããã¯åäœã®ã¹ã±ãŒãªã³ã°ã«å¯Ÿå¿ããŸãããããã«ãããããé«ã粟床ã§ã®éååãå¯èœã«ãªããŸãã
+
+forward ã®èšç®ã¯ãééååãè¡ãªã£ãéã¿ã§ FP16/BF16 ã§è¡ãããŸããå
±éã«ãŒãã³ã¯ `src/musubi_tuner/modules/fp8_optimization_utils.py` ã«ãããWan 2.xã»FramePackã»FLUX.1 Kontextã»Qwen-Image ã®åãã€ãã©ã€ã³ã§å©çšãããŸãïŒHunyuanVideo ã«ã€ããŠã¯ `--fp8_scaled` ãªãã·ã§ã³ã¯ç¡å¹ã§ãïŒã
+
+ãã®ã¢ã€ãã¢ã¯ã[HunyuanVideo](https://github.com/Tencent/HunyuanVideo) ã® [å®è£
](https://github.com/Tencent/HunyuanVideo/blob/7df4a45c7e424a3f6cd7d653a7ff1f60cddc1eb1/hyvideo/modules/fp8_optimization.py) ã«åºã¥ããŠããŸããé«ç²ŸåºŠã¢ãžã¥ãŒã«ã®éžå®ã¯ã[diffusion-pipe](https://github.com/tdrussell/diffusion-pipe) ã® [å®è£
](https://github.com/tdrussell/diffusion-pipe/blob/407c04fdae1c9ab5e67b54d33bef62c3e0a8dbc7/models/wan.py) ãåèã«ããŠããŸãããããã®ãªããžããªã«æè¬ããŸãã
+
+
+
+### Usage summary / äœ¿ãæ¹ã®ãŸãšã
+
+- Inference: add `--fp8` and `--fp8_scaled` when running `wan_generate_video.py`, `fpack_generate_video.py`, `flux_kontext_generate_image.py`, or `qwen_image_generate_image.py`. HunyuanVideo continues to rely on `--fp8`/`--fp8_fast` without scaled weights.
+- Training: specify `--fp8_base --fp8_scaled` in `wan_train_network.py`, `fpack_train_network.py`,`flux_kontext_train_network.py` and `qwen_image_train_network.py`; the trainers enforce this pairing.
+- Input checkpoints must be FP16/BF16; pre-quantized FP8 weights cannot be re-optimized.
+- LoRA / LyCORIS weights are merged before quantization, so no additional steps are required.
+
+
+æ¥æ¬èª
+
+- æšè«ã§ã¯ `wan_generate_video.py`ã`fpack_generate_video.py`ã`flux_kontext_generate_image.py`ã`qwen_image_generate_image.py` ãå®è¡ããéã« `--fp8` ãš `--fp8_scaled` ã䜵çšããŠãã ãããHunyuanVideo ã¯åŒãç¶ã`--fp8` / `--fp8_fast` ã䜿çšããã¹ã±ãŒãªã³ã°ä»ãéã¿ã¯æªå¯Ÿå¿ã§ãã
+- åŠç¿ã§ã¯ `wan_train_network.py`ã`fpack_train_network.py`ã`flux_kontext_train_network.py` ã§ `--fp8_base --fp8_scaled` ãæå®ããŸãã
+- èªã¿èŸŒããã§ãã¯ãã€ã³ã㯠FP16/BF16 ã§ããå¿
èŠããããŸããããããã FP8 åãããéã¿ã¯åæé©åã§ããŸããã
+- LoRA / LyCORIS ã®éã¿ã¯éååã®åã«èªåã§ããŒãžãããããã远å äœæ¥ã¯äžèŠã§ãã
+
+
+
+### Implementation highlights / å®è£
ã®ãã€ã³ã
+
+
+When `--fp8_scaled` flag is enabled, the loader loads the base weights in FP16/BF16, merges optional LoRA or LyCORIS, and then emits FP8 weights plus matching block-wise `.scale_weight` buffers for the targeted layers. The patched forward either dequantizes back to the original dtype on demand for computation.
+
+The current scripts in this repository use FP8 E4M3 format and block-wise quantization, but the implementation supports:
+
+- Implements FP8 (E4M3 or E5M2) weight quantization for Linear layers
+- Supports multiple quantization modes: tensor-wise, channel-wise, and block-wise quantization described below
+- Block-wise quantization provides better precision by using granular scaling with configurable block size (default: 64)
+- Reduces VRAM requirements by using 8-bit weights for storage (slightly increased compared to existing `--fp8` `--fp8_base` options)
+- Quantizes weights to FP8 format with appropriate scaling instead of simple cast to FP8
+- Applies monkey patching to Linear layers for transparent dequantization during computation
+- Maintains computational precision by dequantizing to original precision (FP16/BF16) during forward pass
+- Preserves important weights for example norm, embedding, modulation in FP16/BF16 format (fewer exclusions than previous versions)
+
+For quantization and precision discussion, see also [Discussion #564](https://github.com/kohya-ss/musubi-tuner/discussions/564).
+
+Note: Testing for quantization other than E4M3/block-wise is limited, so please be cautious if you plan to use the code in other projects.
+
+
+æ¥æ¬èª
+
+`--fp8_scaled` ãã©ã°ãæå¹ã«ãããšãããŒããŒã¯ãŸãããŒã¹ãšãªãéã¿ã FP16/BF16 ã®ãŸãŸèªã¿èŸŒã¿ãå¿
èŠã«å¿ã㊠LoRA ã LyCORIS ãããŒãžããåŸã察象局ã®éã¿ã FP8 ã®éã¿ãšããããã¯ããšã® `.scale_weight` ãããã¡ãžå€æããŸããforward ã§ã¯ãã®ã¹ã±ãŒã«ã䜿ã£ãŠå
ã®ç²ŸåºŠãžåçã«ééååãèšç®ãè¡ããŸãã
+
+ãã®ãªããžããªã®çŸåšã®ã¹ã¯ãªããã§ã¯ãéååã¯FP8 E4M3圢åŒããããã¯åäœéååãçšããããŠããŸãããå®è£
ãšããŠã¯ä»¥äžããµããŒãããŠããŸãïŒ
+
+- Linearå±€ã®FP8ïŒE4M3ãŸãã¯E5M2ïŒéã¿éååãå®è£
+- è€æ°ã®éååã¢ãŒã察å¿ïŒãã³ãœã«åäœããã£ãã«åäœããããã¯åäœéåå
+- ãããã¯åäœéååã¯æå®ãããããã¯ãµã€ãºïŒããã©ã«ãïŒ64ïŒã§ã®çްç²åºŠã¹ã±ãŒãªã³ã°ã«ããããé«ã粟床ãæäŸ
+- 8ãããã®éã¿ã䜿çšããããšã§VRAM䜿çšéãåæžïŒæ¢åã®`--fp8` `--fp8_base` ãªãã·ã§ã³ã«æ¯ã¹ãŠåŸ®å¢ïŒ
+- åçŽãªFP8ãžã®castã§ã¯ãªããé©åãªå€ã§ã¹ã±ãŒã«ããŠéã¿ãFP8圢åŒã«éåå
+- Linearå±€ã«monkey patchingãé©çšããèšç®æã«ééçã«ééåå
+- forwardæã«å
ã®ç²ŸåºŠïŒFP16/BF16ïŒã«ééååããŠèšç®ç²ŸåºŠãç¶æ
+- 粟床ãéèŠãªéã¿ãããšãã°normãembeddingãmodulationã¯ãFP16/BF16ã®ãŸãŸä¿æïŒåŸæ¥ããŒãžã§ã³ããé€å€å¯Ÿè±¡ãåæžïŒ
+
+éååãšç²ŸåºŠã«ã€ããŠã¯[Discussion #564](https://github.com/kohya-ss/musubi-tuner/discussions/564)ãåç
§ããŠãã ããã
+
+â»E4M3/ãããã¯åäœä»¥å€ã®éååã®ãã¹ãã¯äžååã§ãã®ã§ãã³ãŒããä»ã®ãããžã§ã¯ãã§å©çšããå Žåçã«ã¯æ³šæããŠãã ããã
+
+
+
+### Quantization modes / éååã¢ãŒã
+
+The current implementation supports three quantization modes:
+
+- **Block-wise quantization (default)**: Divides weight matrices into blocks of configurable size (default: 64) and calculates separate scale factors for each block. Provides the best precision but requires more memory for scale storage.
+- **Channel-wise quantization**: Calculates scale factors per output channel (row). Balances precision and memory usage.
+- **Tensor-wise quantization**: Uses a single scale factor for the entire weight tensor. Lowest memory usage but may have reduced precision for some weights.
+
+The implementation automatically falls back to simpler modes when block-wise quantization is not feasible (e.g., when weight dimensions are not divisible by block size).
+
+
+æ¥æ¬èª
+
+çŸåšã®å®è£
ã§ã¯3ã€ã®éååã¢ãŒãããµããŒãããŠããŸãïŒ
+
+- **ãããã¯åäœéååïŒããã©ã«ãïŒ**ïŒéã¿è¡åãèšå®å¯èœãªãµã€ãºã®ãããã¯ïŒããã©ã«ãïŒ64ïŒã«åå²ããåãããã¯ã«å¯ŸããŠåå¥ã®ã¹ã±ãŒã«ä¿æ°ãèšç®ããŸããæé«ã®ç²ŸåºŠãæäŸããŸãããã¹ã±ãŒã«ä¿åã«ãã远å ã¡ã¢ãªãå¿
èŠã§ãã
+- **ãã£ãã«åäœéåå**ïŒåºåãã£ãã«ïŒè¡ïŒããšã«ã¹ã±ãŒã«ä¿æ°ãèšç®ããŸãã粟床ãšã¡ã¢ãªäœ¿çšéã®ãã©ã³ã¹ãåããŸãã
+- **ãã³ãœã«åäœéåå**ïŒéã¿ãã³ãœã«å
šäœã«å¯ŸããŠåäžã®ã¹ã±ãŒã«ä¿æ°ã䜿çšããŸããæãå°ãªãã¡ã¢ãªäœ¿çšéã§ãããäžéšã®éã¿ã§ç²ŸåºŠãäœäžããå ŽåããããŸãã
+
+å®è£
ã§ã¯ããããã¯åäœéååãå®è¡äžå¯èœãªå ŽåïŒéã¿æ¬¡å
ããããã¯ãµã€ãºã§å²ãåããªãå Žåãªã©ïŒãèªåçã«ããåçŽãªã¢ãŒãã«ãã©ãŒã«ããã¯ããŸãã
+
+
+
+ ## PyTorch Dynamo optimization for model training / ã¢ãã«ã®åŠç¿ã«ãããPyTorch Dynamoã®æé©å
+
+The PyTorch Dynamo options are now available to optimize the training process. PyTorch Dynamo is a Python-level JIT compiler designed to make unmodified PyTorch programs faster by using TorchInductor, a deep learning compiler. This integration allows for potential speedups in training while maintaining model accuracy.
+
+[PR #215](https://github.com/kohya-ss/musubi-tuner/pull/215) added this feature.
+
+Specify the `--dynamo_backend` option to enable Dynamo optimization with one of the available backends from the `DynamoBackend` enum.
+
+Additional options allow for fine-tuning the Dynamo behavior:
+- `--dynamo_mode`: Controls the optimization strategy
+- `--dynamo_fullgraph`: Enables fullgraph mode for potentially better optimization
+- `--dynamo_dynamic`: Enables dynamic shape handling
+
+The `--dynamo_dynamic` option has been reported to have many problems based on the validation in PR #215.
+
+### Available options:
+
+```
+--dynamo_backend {NO, INDUCTOR, NVFUSER, CUDAGRAPHS, CUDAGRAPHS_FALLBACK, etc.}
+ Specifies the Dynamo backend to use (default is NO, which disables Dynamo)
+
+--dynamo_mode {default, reduce-overhead, max-autotune}
+ Specifies the optimization mode (default is 'default')
+ - 'default': Standard optimization
+ - 'reduce-overhead': Focuses on reducing compilation overhead
+ - 'max-autotune': Performs extensive autotuning for potentially better performance
+
+--dynamo_fullgraph
+ Flag to enable fullgraph mode, which attempts to capture and optimize the entire model graph
+
+--dynamo_dynamic
+ Flag to enable dynamic shape handling for models with variable input shapes
+```
+
+### Usage example:
+
+```bash
+python src/musubi_tuner/hv_train_network.py --dynamo_backend INDUCTOR --dynamo_mode default
+```
+
+For more aggressive optimization:
+```bash
+python src/musubi_tuner/hv_train_network.py --dynamo_backend INDUCTOR --dynamo_mode max-autotune --dynamo_fullgraph
+```
+
+Note: The best combination of options may depend on your specific model and hardware. Experimentation may be necessary to find the optimal configuration.
+
+
+æ¥æ¬èª
+PyTorch Dynamoãªãã·ã§ã³ãåŠç¿ããã»ã¹ãæé©åããããã«è¿œå ãããŸãããPyTorch Dynamoã¯ãTorchInductorïŒãã£ãŒãã©ãŒãã³ã°ã³ã³ãã€ã©ïŒã䜿çšããŠã倿Žãå ããããšãªãPyTorchããã°ã©ã ãé«éåããããã®Pythonã¬ãã«ã®JITã³ã³ãã€ã©ã§ãããã®çµ±åã«ãããã¢ãã«ã®ç²ŸåºŠãç¶æããªããåŠç¿ã®é«éåãæåŸ
ã§ããŸãã
+
+[PR #215](https://github.com/kohya-ss/musubi-tuner/pull/215) ã§è¿œå ãããŸããã
+
+`--dynamo_backend`ãªãã·ã§ã³ãæå®ããŠã`DynamoBackend`åæåããå©çšå¯èœãªããã¯ãšã³ãã®äžã€ãéžæããããšã§ãDynamoæé©åãæå¹ã«ããŸãã
+
+远å ã®ãªãã·ã§ã³ã«ãããDynamoã®åäœã埮調æŽã§ããŸãïŒ
+- `--dynamo_mode`ïŒæé©åæŠç¥ãå¶åŸ¡ããŸã
+- `--dynamo_fullgraph`ïŒããè¯ãæé©åã®å¯èœæ§ã®ããã«ãã«ã°ã©ãã¢ãŒããæå¹ã«ããŸã
+- `--dynamo_dynamic`ïŒåç圢ç¶åŠçãæå¹ã«ããŸã
+
+PR #215ã§ã®æ€èšŒã«ãããšã`--dynamo_dynamic`ã«ã¯åé¡ãå€ãããšãå ±åãããŠããŸãã
+
+__å©çšå¯èœãªãªãã·ã§ã³ïŒ__
+
+```
+--dynamo_backend {NO, INDUCTOR, NVFUSER, CUDAGRAPHS, CUDAGRAPHS_FALLBACK, ãªã©}
+ 䜿çšããDynamoããã¯ãšã³ããæå®ããŸãïŒããã©ã«ãã¯NOã§ãDynamoãç¡å¹ã«ããŸãïŒ
+
+--dynamo_mode {default, reduce-overhead, max-autotune}
+ æé©åã¢ãŒããæå®ããŸãïŒããã©ã«ã㯠'default'ïŒ
+ - 'default'ïŒæšæºçãªæé©å
+ - 'reduce-overhead'ïŒã³ã³ãã€ã«ã®ãªãŒããŒãããåæžã«çŠç¹ãåœãŠã
+ - 'max-autotune'ïŒããè¯ãããã©ãŒãã³ã¹ã®ããã«åºç¯ãªèªå調æŽãå®è¡
+
+--dynamo_fullgraph
+ ãã«ã°ã©ãã¢ãŒããæå¹ã«ãããã©ã°ãã¢ãã«ã°ã©ãå
šäœããã£ããã£ããŠæé©åããããšããŸã
+
+--dynamo_dynamic
+ å¯å€å
¥å圢ç¶ãæã€ã¢ãã«ã®ããã®åç圢ç¶åŠçãæå¹ã«ãããã©ã°
+```
+
+__䜿çšäŸïŒ__
+
+```bash
+python src/musubi_tuner/hv_train_network.py --dynamo_backend INDUCTOR --dynamo_mode default
+```
+
+ããç©æ¥µçãªæé©åã®å ŽåïŒ
+```bash
+python src/musubi_tuner/hv_train_network.py --dynamo_backend INDUCTOR --dynamo_mode max-autotune --dynamo_fullgraph
+```
+
+泚æïŒæé©ãªãªãã·ã§ã³ã®çµã¿åããã¯ãç¹å®ã®ã¢ãã«ãšããŒããŠã§ã¢ã«äŸåããå ŽåããããŸããæé©ãªæ§æãèŠã€ããããã«å®éšãå¿
èŠãããããŸããã
+
+
+## MagCache
+
+The following is quoted from the [MagCache github repository](https://github.com/Zehong-Ma/MagCache) "Magnitude-aware Cache (MagCache) for Video Diffusion Models":
+
+> We introduce Magnitude-aware Cache (MagCache), a training-free caching approach that estimates and leverages the fluctuating differences among model outputs across timesteps based on the robust magnitude observations, thereby accelerating the inference. MagCache works well for Video Diffusion Models, Image Diffusion models.
+
+We have implemented the MagCache feature in Musubi Tuner. Some of the code is based on the MagCache repository. It is available for `fpack_generate_video.py` for now.
+
+### Usage
+
+1. Calibrate the mag ratios
+ - Run the inference script as normal, but with the `--magcache_calibration` option to calibrate the mag ratios. You will get a following output:
+
+ ```
+ INFO:musubi_tuner.fpack_generate_video:Copy and paste following values to --magcache_mag_ratios argument to use them:
+ 1.00000,1.26562,1.08594,1.02344,1.00781,1.01562,1.01562,1.03125,1.04688,1.00781,1.03125,1.00000,1.01562,1.01562,1.02344,1.01562,0.98438,1.05469,0.98438,0.97266,1.03125,0.96875,0.93359,0.95703,0.77734
+ ```
+ - It is recommended to run the calibration with your custom prompt and model.
+ - If you inference the multi-section video, you will get the mag ratios for each section. You can use the one of the sections or average them.
+
+2. Use the mag ratios
+ - Run the inference script with the `--magcache_mag_ratios` option to use the mag ratios. For example:
+
+ ```bash
+ python fpack_generate_video.py --magcache_mag_ratios 1.00000,1.26562,1.08594,1.02344,1.00781,1.01562,1.01562,1.03125,1.04688,1.00781,1.03125,1.00000,1.01562,1.01562,1.02344,1.01562,0.98438,1.05469,0.98438,0.97266,1.03125,0.96875,0.93359,0.95703,0.77734
+ ```
+
+ - Specify `--magcache_mag_ratios 0` to use the default mag ratios from the MagCache repository.
+ - It is recommended to use the same steps as the calibration. If the steps are different, the mag ratios is interpolated to the specified steps.
+ - You can also specify the `--magcache_retention_ratio`, `--magcache_threshold`, and `--magcache_k` options to control the MagCache behavior. The default values are 0.2, 0.24, and 6, respectively (same as the MagCache repository).
+
+ ```bash
+ python fpack_generate_video.py --magcache_retention_ratio 0.2 --magcache_threshold 0.24 --magcache_k 6
+ ```
+
+ - The `--magcache_retention_ratio` option controls the ratio of the steps not to cache. For example, if you set it to 0.2, the first 20% of the steps will not be cached. The default value is 0.2.
+ - The `--magcache_threshold` option controls the threshold whether to use the cached output or not. If the accumulated error is less than the threshold, the cached output will be used. The default value is 0.24.
+ - The error is calculated by the accumulated error multiplied by the mag ratio.
+ - The `--magcache_k` option controls the number of steps to use for the cache. The default value is 6, which means the consecutive 6 steps will be used for the cache. The default value 6 is recommended for 50 steps, so you may want to lower it for smaller number of steps.
+
+### Generated video example
+
+Using F1-model, without MagCache, approximately 90 seconds are required to generate single section video with 25 steps (without VAE decoding) in my environment.
+
+https://github.com/user-attachments/assets/30b8d05e-9bd6-42bf-997f-5ba5b3dde876
+
+With MagCache, default settings, approximately 30 seconds are required to generate with the same settings.
+
+https://github.com/user-attachments/assets/080076ea-4088-443c-8138-4eeb00694ec5
+
+With MagCache, `--magcache_retention_ratio 0.2 --magcache_threshold 0.12 --magcache_k 3`, approximately 35 seconds are required to generate with the same settings.
+
+https://github.com/user-attachments/assets/27d6c7ff-e3db-4c52-8668-9a887441acef
+
+
+æ¥æ¬èª
+
+以äžã¯ã[MagCache githubãªããžããª](https://github.com/Zehong-Ma/MagCache) "Magnitude-aware Cache (MagCache) for Video Diffusion Models"ããã®åŒçšã®æèš³ã§ãïŒ
+
+> Magnitude-aware Cache (MagCache)ã¯ããã¬ãŒãã³ã°äžèŠã®ãã£ãã·ã³ã°ã¢ãããŒãã§ãå
ç¢ãªãã°ããã¥ãŒã芳枬ã«åºã¥ããŠã¿ã€ã ã¹ãããéã®ã¢ãã«åºåã®å€åå·®ãæšå®ããã³æŽ»çšããæšè«ãå éããŸããMagCacheã¯ããããªæ¡æ£ã¢ãã«ãç»åæ¡æ£ã¢ãã«ã«é©ããŠããŸãã
+
+Musubi Tunerã«MagCacheæ©èœãå®è£
ããŸãããäžéšã®ã³ãŒãã¯MagCacheãªããžããªã®ã³ãŒããåºã«ããŠããŸããçŸåšã¯`fpack_generate_video.py`ã§ã®ã¿å©çšå¯èœã§ãã
+
+### äœ¿çšæ¹æ³
+
+1. mag_ratiosã®ãã£ãªãã¬ãŒã·ã§ã³
+ - `--magcache_calibration`ãªãã·ã§ã³ãæå®ããŠããã以å€ã¯éåžžéãæšè«ã¹ã¯ãªãããå®è¡ããmag ratiosããã£ãªãã¬ãŒã·ã§ã³ããŸãã以äžã®ãããªåºåãåŸãããŸãïŒ
+
+ ```
+ INFO:musubi_tuner.fpack_generate_video:Copy and paste following values to --magcache_mag_ratios argument to use them:
+ 1.00000,1.26562,1.08594,1.02344,1.00781,1.01562,1.01562,1.03125,1.04688,1.00781,1.03125,1.00000,1.01562,1.01562,1.02344,1.01562,0.98438,1.05469,0.98438,0.97266,1.03125,0.96875,0.93359,0.95703,0.77734
+ ```
+ - ã«ã¹ã¿ã ããã³ãããšã¢ãã«ã§ãã£ãªãã¬ãŒã·ã§ã³ãå®è¡ããããšããå§ãããŸãã
+ - è€æ°ã»ã¯ã·ã§ã³ãããªãæšè«ããå Žåãåã»ã¯ã·ã§ã³ã®mag ratiosãåºåãããŸããã©ããäžã€ããŸãã¯ããããå¹³åããå€ã䜿ã£ãŠãã ããã
+
+2. mag ratiosã®äœ¿çš
+ - `--magcache_mag_ratios`ãªãã·ã§ã³ã§mag ratiosãæå®ããŠæšè«ã¹ã¯ãªãããå®è¡ããŸããäŸïŒ
+
+ ```bash
+ python fpack_generate_video.py --magcache_mag_ratios 1.00000,1.26562,1.08594,1.02344,1.00781,1.01562,1.01562,1.03125,1.04688,1.00781,1.03125,1.00000,1.01562,1.01562,1.02344,1.01562,0.98438,1.05469,0.98438,0.97266,1.03125,0.96875,0.93359,0.95703,0.77734
+ ```
+
+ - `--magcache_mag_ratios 0`ãæå®ãããšãMagCacheãªããžããªã®ããã©ã«ãã®mag ratiosã䜿çšãããŸãã
+ - mag ratiosã®æ°ã¯ãã£ãªãã¬ãŒã·ã§ã³ããæãšåãã¹ãããæ°ãæå®ããããšããå§ãããŸããã¹ãããæ°ãç°ãªãå Žåãmag ratiosã¯æå®ãããã¹ãããæ°ã«åãããã«è£éãããŸãã
+ - `--magcache_retention_ratio`, `--magcache_threshold`, `--magcache_k`ãªãã·ã§ã³ãæå®ããŠMagCacheã®åäœãå¶åŸ¡ã§ããŸããããã©ã«ãå€ã¯0.2ã0.24ã6ã§ãïŒMagCacheãªããžããªãšåãã§ãïŒã
+
+ ```bash
+ python fpack_generate_video.py --magcache_retention_ratio 0.2 --magcache_threshold 0.24 --magcache_k 6
+ ```
+
+ - `--magcache_retention_ratio`ãªãã·ã§ã³ã¯ããã£ãã·ã¥ããªãã¹ãããã®å²åãå¶åŸ¡ããŸããäŸãã°ã0.2ã«èšå®ãããšãæåã®20%ã®ã¹ãããã¯ãã£ãã·ã¥ãããŸãããããã©ã«ãå€ã¯0.2ã§ãã
+ - `--magcache_threshold`ãªãã·ã§ã³ã¯ããã£ãã·ã¥ãããåºåã䜿çšãããã©ããã®éŸå€ãå¶åŸ¡ããŸãã环ç©èª€å·®ããã®éŸå€æªæºã®å Žåããã£ãã·ã¥ãããåºåã䜿çšãããŸããããã©ã«ãå€ã¯0.24ã§ãã
+ - 誀差ã¯ã环ç©èª€å·®ã«mag ratioãæãããã®ãšããŠèšç®ãããŸãã
+ - `--magcache_k`ãªãã·ã§ã³ã¯ããã£ãã·ã¥ã«äœ¿çšããã¹ãããæ°ãå¶åŸ¡ããŸããããã©ã«ãå€ã¯6ã§ãããã¯é£ç¶ãã6ã¹ãããããã£ãã·ã¥ã«äœ¿çšãããããšãæå³ããŸããããã©ã«ãå€6ã¯æãã50ã¹ãããã®å Žåã®æšå¥šå€ã®ãããã¹ãããæ°ãå°ãªãå Žåã¯æžããããšãæ€èšããŠãã ããã
+
+çæãµã³ãã«ã¯è±èªã§ã®èª¬æãåç
§ããŠãã ããã
+
+
+
+## Style-Friendly SNR Sampler
+
+This sampler is based on the paper [Style-Friendly SNR Sampler for Style-Driven Generation](https://arxiv.org/abs/2411.14793). The paper argues that stylistic features in diffusion models are predominantly learned at high noise levels. This sampler biases the noise level (timestep) sampling towards these higher noise levels, which can significantly improve the model's ability to learn and reproduce specific styles.
+
+This feature is enabled by specifying `--timestep_sampling`.
+
+
+æ¥æ¬èª
+
+ãã®ãµã³ãã©ãŒã¯ãè«æã[Style-Friendly SNR Sampler for Style-Driven Generation](https://arxiv.org/abs/2411.14793)ãã«åºã¥ããŠããŸãããã®è«æã§ã¯ãæ¡æ£ã¢ãã«ã«ãããã¹ã¿ã€ã«ç¹åŸŽã¯ãäž»ã«ãã€ãºã¬ãã«ãé«ãé åã§åŠç¿ããããšäž»åŒµããŠããŸãããã®ãµã³ãã©ãŒã¯ããã€ãºã¬ãã«ïŒã¿ã€ã ã¹ãããïŒã®ãµã³ããªã³ã°ãæå³çã«é«ãã€ãºã¬ãã«åŽã«åãããããšã§ãã¢ãã«ãç¹å®ã®ã¹ã¿ã€ã«ãåŠç¿ã»åçŸããèœåã倧å¹
ã«åäžãããããšãã§ããŸãã
+
+ãã®æ©èœã¯ `--timestep_sampling` ãæå®ããããšã§æå¹ã«ãªããŸãã
+
+
+### `logsnr` Sampler
+
+This is a direct implementation of the sampler proposed in the paper. It samples the log-SNR value from a normal distribution. By setting a low mean and a large standard deviation, it focuses the training on high-noise levels crucial for style learning.
+
+To use this, specify `logsnr` for `--timestep_sampling`. You can also configure the mean and standard deviation of the log-SNR distribution with `--logit_mean` and `--logit_std`.
+
+The paper recommends `logit_mean=-6.0` and `logit_std` of 2.0 or 3.0.
+
+```bash
+accelerate launch ... \
+ --timestep_sampling logsnr \
+ --logit_mean -6.0 \
+ --logit_std 2.0
+```
+
+Following is the distribution of the logsnr sampler:
+
+
+
+
+æ¥æ¬èª
+
+è«æã§ææ¡ãããéãã®ãµã³ãã©ãŒã®å®è£
ã§ããlog-SNRå€ãæ£èŠååžãããµã³ããªã³ã°ããŸããäœãå¹³åå€ãšå€§ããªæšæºåå·®ãèšå®ããããšã§ãã¹ã¿ã€ã«ã®åŠç¿ã«äžå¯æ¬ ãªé«ãã€ãºã¬ãã«é åã«åŠç¿ãéäžãããŸãã
+
+䜿çšããã«ã¯ã`--timestep_sampling` ã« `logsnr` ãæå®ããŸãããŸãã`--logit_mean` ãš `--logit_std` ã§log-SNRååžã®å¹³åãšæšæºåå·®ãèšå®ã§ããŸãã
+
+è«æã§ã¯ `logit_mean=-6.0`ã`logit_std` ã¯2.0ãŸãã¯3.0ãæšå¥šãããŠããŸãã
+
+
+
+
+### `qinglong_flux` and `qinglong_qwen` Sampler (Hybrid Sampler)
+
+This is a hybrid sampling method that combines three different samplers to balance style learning, model stability, and detail preservation. It is an experimental feature inspired by the Style-Friendly SNR Sampler. It was proposed by sdbds (Qing Long) in PR [#407](https://github.com/kohya-ss/musubi-tuner/pull/407).
+
+In each training step, one of the following samplers is chosen for each sample in the batch based on a predefined ratio:
+
+1. **flux_shift or qwen_shift (80%)**: The standard sampler for high-resolution models. Focuses on overall stability.
+2. **logsnr (7.5%)**: The Style-Friendly sampler. Focuses on style learning.
+3. **logsnr2 (12.5%)**: A sampler that focuses on low-noise regions (high log-SNR values). Aims to improve the learning of fine details.
+
+To use this, specify `qinglong_flux` or `qinglong_qwen` for `--timestep_sampling`.
+
+```bash
+accelerate launch ... \
+ --timestep_sampling qinglong_flux \
+ --logit_mean -6.0 \
+ --logit_std 2.0
+```
+
+Following is the distribution of the qinglong flux sampler:
+
+
+
+
+æ¥æ¬èª
+
+ããã¯ãã¹ã¿ã€ã«ã®åŠç¿ãã¢ãã«ã®å®å®æ§ããã£ããŒã«ã®åçŸæ§ã®ãã©ã³ã¹ãåãããã«ã3ã€ã®ç°ãªããµã³ãã©ãŒãçµã¿åããããã€ããªãããµã³ããªã³ã°ææ³ã§ããStyle-Friendly SNR Samplerã«ã€ã³ã¹ãã€ã¢ãããå®éšçãªæ©èœã§ããPR [#407](https://github.com/kohya-ss/musubi-tuner/pull/407) ã§ sdbds (Qing Long) æ°ã«ããææ¡ãããŸããã
+
+ååŠç¿ã¹ãããã«ãããŠããããå
ã®åãµã³ãã«ã«å¯ŸããŠããããããå®çŸ©ãããæ¯çã«åºã¥ã以äžã®ããããã®ãµã³ãã©ãŒãéžæãããŸãã
+
+1. **flux_shift ãŸã㯠qwen_shift (80%)**: é«è§£å床ã¢ãã«åãã®æšæºçãªãµã³ãã©ãŒãå
šäœçãªå®å®æ§ãéèŠããŸãã
+2. **logsnr (7.5%)**: Style-Friendlyãµã³ãã©ãŒãã¹ã¿ã€ã«ã®åŠç¿ãéèŠããŸãã
+3. **logsnr2 (12.5%)**: äœãã€ãºé åïŒé«ãlog-SNRå€ïŒã«çŠç¹ãåœãŠããµã³ãã©ãŒã现éšã®ãã£ããŒã«åŠç¿ãåäžãããããšãç®çãšããŸãã
+
+䜿çšããã«ã¯ã`--timestep_sampling` ã« `qinglong_flux` ãŸã㯠`qinglong_qwen` ãæå®ããŸãã
+
+
+
+## Specify time step range for training / åŠç¿æã®ã¿ã€ã ã¹ãããç¯å²ã®æå®
+
+You can specify the range of timesteps for training. This is useful for focusing the training on a specific part of the diffusion process.
+
+- `--min_timestep`: Specifies the minimum timestep for training (0-999, default: 0).
+- `--max_timestep`: Specifies the maximum timestep for training (1-1000, default: 1000).
+- `--preserve_distribution_shape`: If specified, it constrains timestep sampling to the `[min_timestep, max_timestep]` range using rejection sampling, which preserves the original distribution shape. By default, the `[0, 1]` range is scaled, which can distort the distribution. This option is only effective when `timestep_sampling` is not 'sigma'.
+
+
+æ¥æ¬èª
+
+åŠç¿æã®ã¿ã€ã ã¹ãããã®ç¯å²ãæå®ã§ããŸããããã«ãããæ¡æ£ããã»ã¹ã®ç¹å®ã®éšåã«åŠç¿ãéäžãããããšãã§ããŸãã
+
+- `--min_timestep`: åŠç¿æã®æå°ã¿ã€ã ã¹ããããæå®ããŸãïŒ0-999ãããã©ã«ã: 0ïŒã
+- `--max_timestep`: åŠç¿æã®æå€§ã¿ã€ã ã¹ããããæå®ããŸãïŒ1-1000ãããã©ã«ã: 1000ïŒã
+- `--preserve_distribution_shape`: æå®ãããšãã¿ã€ã ã¹ãããã®ãµã³ããªã³ã°ãæ£åŽãµã³ããªã³ã°ïŒæ¡ä»¶ã«åããªããã®ãæšãŠãïŒãçšã㊠`[min_timestep, max_timestep]` ã®ç¯å²ã«å¶çŽããå
ã®ååžåœ¢ç¶ãä¿æããŸããããã©ã«ãã§ã¯ã`[0, 1]` ã®ç¯å²ãã¹ã±ãŒãªã³ã°ããããããååžãæªãå¯èœæ§ããããŸãããã®ãªãã·ã§ã³ã¯ `timestep_sampling` ã 'sigma' 以å€ã®å Žåã«ã®ã¿æå¹ã§ãã
+
+
+### Example / èšè¿°äŸ
+
+To train only on the latter half of the timesteps (more detailed part) / ã¿ã€ã ã¹ãããã®åŸåïŒãã詳现ãªéšåïŒã®ã¿ãåŠç¿ããå Žå:
+
+```bash
+--min_timestep 500 --max_timestep 1000
+```
+
+To train only on the first half of the timesteps (more structural part) / ã¿ã€ã ã¹ãããã®ååïŒããæ§é çãªéšåïŒã®ã¿ãåŠç¿ããå Žå:
+
+```bash
+--min_timestep 0 --max_timestep 500
+```
+
+To train on a specific range while preserving the sampling distribution shape / ãµã³ããªã³ã°ååžã®åœ¢ç¶ãç¶æãã€ã€ç¹å®ã®ç¯å²ã§åŠç¿ããå Žå:
+
+```bash
+--min_timestep 200 --max_timestep 800 --preserve_distribution_shape
+```
+
+### Actual distribution shape / å®éã®ååžåœ¢ç¶
+
+You can visualize the distribution shape of the timesteps with `--show_timesteps image` (or console) option. The distribution shape is determined by the `--min_timestep`, `--max_timestep`, and `--preserve_distribution_shape` options.
+
+In the following examples, the discrete flow shift is set to 3.0.
+
+When `--min_timestep` and `--max_timestep` are not specified, the distribution shape is as follows:
+
+
+
+When `--min_timestep 500` and `--max_timestep 100` are specified, and `--preserve_distribution_shape` is not specified, the distribution shape is as follows:
+
+
+
+When `--min_timestep 500` and `--max_timestep 100` are specified, and `--preserve_distribution_shape` is specified, the distribution shape is as follows:
+
+
+
+
+æ¥æ¬èª
+
+ã¿ã€ã ã¹ãããã®ååžåœ¢ç¶ã¯ã`--show_timesteps image`ïŒãŸãã¯consoleïŒãªãã·ã§ã³ã§ç¢ºèªã§ããŸããååžåœ¢ç¶ã¯ã`--min_timestep`ã`--max_timestep`ãããã³ `--preserve_distribution_shape` ãªãã·ã§ã³ã«ãã£ãŠæ±ºãŸããŸãã
+
+äžã®å³ã¯ããããã颿£ãããŒã·ããã3.0ã®ãšãã
+
+1. `--min_timestep` ãš `--max_timestep` ãæå®ãããŠããªãå Žå
+2. `--min_timestep 500` ãš `--max_timestep 1000` ãæå®ããã`--preserve_distribution_shape` ãæå®ãããŠããªãå Žå
+3. `--min_timestep 500` ãš `--max_timestep 1000` ãæå®ããã`--preserve_distribution_shape` ãæå®ãããå Žå
+
+ã®ååžåœ¢ç¶ã瀺ããŠããŸãã
+
+
+## Timestep Bucketing for Uniform Sampling / åäžãªãµã³ããªã³ã°ã®ããã®Timestep Bucketing
+
+This feature is experimental.
+
+When training with a small dataset or for a few epochs, the random sampling of timesteps can be biased, potentially leading to unstable training. To mitigate this, timestep bucketing ensures a more uniform distribution of timesteps throughout the training process.
+
+This feature works as follows:
+
+1. At the beginning of each epoch, it prepares a pool of timesteps equal to the number of items in the dataset for that epoch. These timesteps are calculated as follows:
+ - A specified number of buckets is created. Each bucket represents an equal interval of the `[0, 1]` range (e.g., with 5 buckets, the ranges are `[0, 0.2]`, `[0.2, 0.4]`, ... `[0.8, 1.0]`).
+ - Each bucket is filled with an equal number of randomly generated timesteps within its range.
+ - The number of timesteps in each bucket is calculated as "number of dataset items ÷ number of buckets".
+
+2. All timesteps from all buckets are then combined and shuffled.
+3. During training, instead of generating a random timestep for each item, one is drawn from this pre-shuffled pool.
+
+This ensures that the model sees a balanced distribution of timesteps in each epoch, which can improve training stability, especially for LoRA training or when using small datasets.
+
+This feature is enabled by specifying `--num_timestep_buckets`.
+
+
+æ¥æ¬èª
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+ããŒã¿ã»ãããå°ããå ŽåãåŠç¿ãšããã¯æ°ãå°ãªãå Žåãã¿ã€ã ã¹ãããã®ä¹±æ°ã«åããçããããšã§ãåŠç¿ãäžå®å®ã«ãªãå¯èœæ§ããããŸããTimestep Bucketingæ©èœã¯ããã®åé¡ã軜æžããããã®æ©èœã§ãåŠç¿ããã»ã¹å
šäœã§ã¿ã€ã ã¹ããããããåäžã«ååžãããã調æŽããŸãã
+
+ãã®æ©èœã¯ä»¥äžã®ããã«åäœããŸãïŒ
+
+1. åãšããã¯ã®éå§æã«ãããããããã®ãšããã¯ã®ããŒã¿ã»ããã®ä»¶æ°ãšåãæ°ã®ãã¿ã€ã ã¹ããããæºåããŸãããããã®ã¿ã€ã ã¹ãããã¯ä»¥äžã®ããã«èšç®ãããŸãã
+
+ - æå®ãããæ°ã®ãã±ãããæºåããŸããåãã±ãã㯠`[0, 1]` ã®ç¯å²ãçåããåºéã衚ããŸãïŒäŸïŒ5ãã±ããã®å Žåã`[0, 0.2]`ã`[0.2, 0.4]` ... `[0.8, 1.0]`ïŒã
+ - åãã±ããã«ããã®ç¯å²å
ã§ã©ã³ãã ã«çæãããã¿ã€ã ã¹ããããé
眮ããŸãã
+ - ããããã®ãã±ããã®ã¿ã€ã ã¹ãããã®ä»¶æ°ã¯ããããŒã¿ã»ããã®ä»¶æ°Ã·ãã±ããæ°ãã§èšç®ãããŸãã
+
+2. ãã¹ãŠã®ãã±ããã®ã¿ã€ã ã¹ããããçµåãããã·ã£ããã«ãããŸãã
+3. åŠç¿æã«ã¯ãã¢ã€ãã ããšã«ã©ã³ãã ãªã¿ã€ã ã¹ããããçæãã代ããã«ããã®äºåã«ã·ã£ããã«ãããããŒã«ããã¿ã€ã ã¹ããããåãåºãããŸãã
+
+ããã«ãããåãšããã¯ã§ã¢ãã«ããã©ã³ã¹ã®åããã¿ã€ã ã¹ãããã®ååžã䜿çšããããšã«ãªããç¹ã«LoRAã®åŠç¿ãå°èŠæš¡ãªããŒã¿ã»ããã䜿çšããéã®åŠç¿ã®å®å®æ§ãåäžããŸãã
+
+ãã®æ©èœã¯ `--num_timestep_buckets` ãæå®ããããšã§æå¹ã«ãªããŸãã
+
+
+
+### How to use / äœ¿çšæ¹æ³
+
+Specify the number of buckets with the `--num_timestep_buckets` option. A value of 2 or more enables this feature. If not specified, it is disabled.
+
+The community research is required to determine the optimal value, but starting with a value between `4` and `10` may be a good idea.
+
+
+æ¥æ¬èª
+
+`--num_timestep_buckets` ãªãã·ã§ã³ã§ãã±ããæ°ãæå®ããŸãã2以äžã®å€ãæå®ãããšãã®æ©èœãæå¹ã«ãªããŸããæå®ããªãå Žåã¯ç¡å¹ã§ãã
+
+æé©ãªå€ã«é¢ããŠã¯ã³ãã¥ããã£ã®æ€èšŒãå¿
èŠã§ããã`4` ãã `10` çšåºŠã®å€ããå§ãããšè¯ããšæãããŸãã
+
+
+
+### Example / èšè¿°äŸ
+
+```bash
+accelerate launch ... \
+ --num_timestep_buckets 5
+```
+
+### Notes / 泚æç¹
+
+- This feature may not work as expected when training with both high and low noise models simultaneously in `wan_train_network.py` (`--dit_high_noise` option) or when `--preserve_distribution_shape` is specified. Because the way timesteps are handled will differ in these cases.
+
+ Specifically, instead of selecting from pre-configured timestep buckets, the process involves determining buckets on-demand and generating random timesteps within the range each bucket covers. Therefore, the uniform sampling effect may not be achieved, but some improvement can be expected compared to completely random generation (within the `[0, 1]` range).
+
+
+æ¥æ¬èª
+
+- `wan_train_network.py` ã§high/lowãã€ãºã¢ãã«ãåæã«åŠç¿ããå ŽåïŒ`--dit_high_noise` ãªãã·ã§ã³ïŒãããã³ã`--preserve_distribution_shape` ãæå®ããå Žåãã¿ã€ã ã¹ãããã®æ±ããç°ãªãããããã®æ©èœã¯æåŸ
éãã«åäœããªãå¯èœæ§ããããŸãã
+
+ å
·äœçã«ã¯ããããããèšå®ãããã¿ã€ã ã¹ãããã®ãã±ããããéžæãããã®ã§ã¯ãªããéœåºŠããã±ãã®æ±ºå®âç¯å²å
ã§ã®ã©ã³ãã ãªã¿ã€ã ã¹ãããã®çæãè¡ãããŸãããã®ãããåäžãªãµã³ããªã³ã°ã®å¹æãåŸãããªãå¯èœæ§ããããŸãããå®å
šãªã©ã³ãã ïŒ`[0, 1]` ã®ç¯å²ã§ã®çæïŒã«æ¯ã¹ããšãå€å°ã®æ¹åãèŠèŸŒãŸããŸãã
+
+
+
+## Schedule Free Optimizer / ã¹ã±ãžã¥ãŒã«ããªãŒãªããã£ãã€ã¶
+
+[Schedule Free Optimizer](https://github.com/facebookresearch/schedule_free) is an optimizer that does not require a learning rate schedule.
+
+The library is optional, so you can install it with `pip install schedulefree`.
+
+Specify the optimizer with the `--optimizer_type` argument, using the format `package_name.ClassName`, for example: `--optimizer_type schedulefree.AdamWScheduleFree`.
+
+You can specify multiple arguments for the optimizer using the `--optimizer_args` argument in the form `arg_name=value` (e.g., `--optimizer_args "weight_decay=0.01" "betas=(0.9,0.95)"`).
+
+
+æ¥æ¬èª
+
+[Schedule Free Optimizer](https://github.com/facebookresearch/schedule_free)ã¯ãåŠç¿çã¹ã±ãžã¥ãŒã«ãå¿
èŠãšããªããªããã£ãã€ã¶ã§ãã
+
+ã©ã€ãã©ãªã¯ãªãã·ã§ã³ã®ããã`pip install schedulefree` ã§ã€ã³ã¹ããŒã«ããŠãã ããã
+
+`--optimizer_type`åŒæ°ã«ã` --optimizer_type schedulefree.AdamWScheduleFree`ã®ããã«ã`ããã±ãŒãžå.ã¯ã©ã¹å`ã®åœ¢åŒã§æå®ããŸãããªããã£ãã€ã¶ãžã®åŒæ°ã¯ã`--optimizer_args`ã«`åŒæ°å=å€`ã®åœ¢ã§è€æ°æå®ã§ããŸãïŒäŸïŒ`--optimizer_args "weight_decay=0.01" "betas=(0.9,0.95)"`ïŒã
+
+
+
+## Custom LR Scheduler / ã«ã¹ã¿ã LRã¹ã±ãžã¥ãŒã©
+
+### Rex
+
+The Rex scheduler was added in [PR #513](https://github.com/kohya-ss/musubi-tuner/pull/513). It is based on the paper [REX: Revisiting Budgeted Training with an Improved Schedule](https://arxiv.org/abs/2107.04197), and the implementation is based on the repository by [IvanVassi](https://github.com/IvanVassi/REX_LR).
+
+It has two parameters, `rex_alpha` and `rex_beta`, with default values of 0.1 and 0.9, respectively. These parameters are based on the defaults in IvanVassi's repository. The values proposed in the paper are 0.5 and 0.5. You can also use `--lr_warmup_steps` (default is 0) and `--lr_scheduler_min_lr_ratio` (default is 0.01).
+
+It is similar to the Polynomial Scheduler with power less than 1, but Rex has a more gradual decrease in learning rate. For the specific LR curve, refer to the explanation in PR #513.
+
+It is enabled by specifying `--lr_scheduler rex`. You can specify the parameters with `--lr_scheduler_args`.
+
+```bash
+--lr_scheduler rex --lr_scheduler_args "rex_alpha=0.1" "rex_beta=0.9"
+```
+
+
+æ¥æ¬èª
+
+Rexã¹ã±ãžã¥ãŒã©ã¯ [PR #513](https://github.com/kohya-ss/musubi-tuner/pull/513) ã§è¿œå ãããŸãããè«æ [REX: Revisiting Budgeted Training with an Improved Schedule](https://arxiv.org/abs/2107.04197) ã«åºã¥ããŠãããã®ã§ãå®è£
㯠[IvanVassi](https://github.com/IvanVassi/REX_LR) æ°ã®ãªããžããªãå
ã«ããŠããŸãã
+
+`rex_alpha`ãš`rex_beta`ã®2ã€ã®ãã©ã¡ãŒã¿ãæã¡ãããã©ã«ãå€ã¯ãããã0.1ãš0.9ã§ãããããã®ãã©ã¡ãŒã¿ã¯IvanVassiæ°ã®ãªããžããªã®ããã©ã«ãå€ã«åºã¥ããŠããŸããè«æã§æå±ãããŠããå€ã¯ãããã0.5ïŒ0.5ã§ãããŸãã`--lr_warmup_steps` ïŒããã©ã«ãå€ã¯0ïŒããã³ `--lr_scheduler_min_lr_ratio` ïŒããã©ã«ãå€ã¯0.01ïŒã䜿çšã§ããŸãã
+
+powerã1æªæºã«èšå®ãã Polynomial Scheduler ã«äŒŒãŠããŸãããRexã¯åŠç¿çã®æžå°ãããç·©ããã§ããå
·äœçãªLRã®ã«ãŒãã¯PR #513ã®èª¬æãåç
§ããŠãã ããã
+
+`--lr_scheduler rex`ãæå®ããããšã§æå¹ã«ãªããŸãã`--lr_scheduler_args`ã§ãã©ã¡ãŒã¿ãæå®ã§ããŸãã
+
+```bash
+--lr_scheduler rex --lr_scheduler_args "rex_alpha=0.1" "rex_beta=0.9"
+```
+
+
\ No newline at end of file
diff --git a/docs/dataset_config.md b/docs/dataset_config.md
new file mode 100644
index 0000000000000000000000000000000000000000..cdc72d519bb3de2c3e684b574e5dd331283d7fcc
--- /dev/null
+++ b/docs/dataset_config.md
@@ -0,0 +1,724 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+## Dataset Configuration
+
+Please create a TOML file for dataset configuration.
+
+Image and video datasets are supported. The configuration file can include multiple datasets, either image or video datasets, with caption text files or metadata JSONL files.
+
+The cache directory must be different for each dataset.
+
+Each video is extracted frame by frame without additional processing and used for training. It is recommended to use videos with a frame rate of 24fps for HunyuanVideo, 16fps for Wan2.1 and 30fps for FramePack. You can check the videos that will be trained using `--debug_mode video` when caching latent (see [here](/README.md#latent-caching)).
+
+æ¥æ¬èª
+
+ããŒã¿ã»ããã®èšå®ãè¡ãããã®TOMLãã¡ã€ã«ãäœæããŠãã ããã
+
+ç»åããŒã¿ã»ãããšåç»ããŒã¿ã»ããããµããŒããããŠããŸããèšå®ãã¡ã€ã«ã«ã¯ãç»åãŸãã¯åç»ããŒã¿ã»ãããè€æ°å«ããããšãã§ããŸãããã£ãã·ã§ã³ããã¹ããã¡ã€ã«ãŸãã¯ã¡ã¿ããŒã¿JSONLãã¡ã€ã«ã䜿çšã§ããŸãã
+
+ãã£ãã·ã¥ãã£ã¬ã¯ããªã¯ãåããŒã¿ã»ããããšã«ç°ãªããã£ã¬ã¯ããªã§ããå¿
èŠããããŸãã
+
+åç»ã¯è¿œå ã®ããã»ã¹ãªãã§ãã¬ãŒã ããšã«æœåºãããåŠç¿ã«çšããããŸãããã®ãããHunyuanVideoã¯24fpsãWan2.1ã¯16fpsãFramePackã¯30fpsã®ãã¬ãŒã ã¬ãŒãã®åç»ã䜿çšããããšããå§ãããŸããlatentãã£ãã·ã¥æã®`--debug_mode video`ã䜿çšãããšãåŠç¿ãããåç»ã確èªã§ããŸãïŒ[ãã¡ã](/README.ja.md#latentã®äºåãã£ãã·ã¥)ãåç
§ïŒã
+
+
+### Sample for Image Dataset with Caption Text Files
+
+```toml
+# resolution, caption_extension, batch_size, num_repeats, enable_bucket, bucket_no_upscale should be set in either general or datasets
+# otherwise, the default values will be used for each item
+
+# general configurations
+[general]
+resolution = [960, 544]
+caption_extension = ".txt"
+batch_size = 1
+enable_bucket = true
+bucket_no_upscale = false
+
+[[datasets]]
+image_directory = "/path/to/image_dir"
+cache_directory = "/path/to/cache_directory"
+num_repeats = 1 # optional, default is 1. Number of times to repeat the dataset. Useful to balance the multiple datasets with different sizes.
+# multiple_target = true # optional, default is false. Set to true for Qwen-Image-Layered training.
+
+# other datasets can be added here. each dataset can have different configurations
+```
+
+`image_directory` is the directory containing images. The captions are stored in text files with the same filename as the image, but with the extension specified by `caption_extension` (for example, `image1.jpg` and `image1.txt`).
+
+`cache_directory` is optional, default is None to use the same directory as the image directory. However, we recommend to set the cache directory to avoid accidental sharing of the cache files between different datasets.
+
+`num_repeats` is also available. It is optional, default is 1 (no repeat). It repeats the images (or videos) that many times to expand the dataset. For example, if `num_repeats = 2` and there are 20 images in the dataset, each image will be duplicated twice (with the same caption) to have a total of 40 images. It is useful to balance the multiple datasets with different sizes.
+
+For Qwen-Image-Layered training, set `multiple_target = true`. Also, in the `image_directory`, for each "image to be trained + segmentation (layer) results" combination, store the following (if `caption_extension` is `.txt`):
+
+|Item|Example|Note|
+|---|---|---|
+|Caption file|`image1.txt`| |
+|Image to be trained (image to be layered)|`image1.png`| |
+|Segmentation (layer) result images|`image1_1.png`, `image1_2.png`, ...|Alpha channel required|
+
+The next combination would be stored as `/path/to/layer_images/image2.txt` for caption, and `/path/to/layer_images/image2.png`, `/path/to/layer_images/image2_0.png`, `/path/to/layer_images/image2_1.png` for images.
+
+
+æ¥æ¬èª
+
+`image_directory`ã¯ç»åãå«ããã£ã¬ã¯ããªã®ãã¹ã§ãããã£ãã·ã§ã³ã¯ãç»åãšåããã¡ã€ã«åã§ã`caption_extension`ã§æå®ããæ¡åŒµåã®ããã¹ããã¡ã€ã«ã«æ ŒçŽããŠãã ããïŒäŸïŒ`image1.jpg`ãš`image1.txt`ïŒã
+
+`cache_directory` ã¯ãªãã·ã§ã³ã§ããããã©ã«ãã¯ç»åãã£ã¬ã¯ããªãšåããã£ã¬ã¯ããªã«èšå®ãããŸãããã ããç°ãªãããŒã¿ã»ããéã§ãã£ãã·ã¥ãã¡ã€ã«ãå
±æãããã®ãé²ãããã«ãæç€ºçã«å¥ã®ãã£ãã·ã¥ãã£ã¬ã¯ããªãèšå®ããããšããå§ãããŸãã
+
+`num_repeats` ã¯ãªãã·ã§ã³ã§ãããã©ã«ã㯠1 ã§ãïŒç¹°ãè¿ããªãïŒãç»åïŒãåç»ïŒãããã®åæ°ã ãåçŽã«ç¹°ãè¿ããŠããŒã¿ã»ãããæ¡åŒµããŸããããšãã°`num_repeats = 2`ãšãããšããç»å20æã®ããŒã¿ã»ãããªããåç»åã2æãã€ïŒåäžã®ãã£ãã·ã§ã³ã§ïŒèš40æååšããå Žåãšåãã«ãªããŸããç°ãªãããŒã¿æ°ã®ããŒã¿ã»ããéã§ãã©ã³ã¹ãåãããã«äœ¿çšå¯èœã§ãã
+
+resolution, caption_extension, batch_size, num_repeats, enable_bucket, bucket_no_upscale 㯠general ãŸã㯠datasets ã®ã©ã¡ããã«èšå®ããŠãã ãããçç¥æã¯åé
ç®ã®ããã©ã«ãå€ã䜿çšãããŸãã
+
+`[[datasets]]`以äžã远å ããããšã§ãä»ã®ããŒã¿ã»ããã远å ã§ããŸããåããŒã¿ã»ããã«ã¯ç°ãªãèšå®ãæãŠãŸãã
+
+Qwen-Image-Layeredã®åŠç¿ã®å Žåã`multiple_target = true`ãèšå®ããŠãã ããããŸãã`image_directory`å
ã«ãããããã®ãåŠç¿ããç»åïŒåå²çµæãçµã¿åããããšã«ã以äžãæ ŒçŽããŠãã ããïŒ`caption_extension`ã`.txt`ã®å ŽåïŒã
+
+|é
ç®|äŸ|åè|
+|---|---|---|
+|ãã£ãã·ã§ã³ãã¡ã€ã«|`image1.txt`| |
+|åŠç¿ããç»åïŒåå²å¯Ÿè±¡ã®ç»åïŒ|`image1.png`| |
+|åå²çµæã®ã¬ã€ã€ãŒç»å矀|`image1_1.png`, `image1_2.png`, ...|ã¢ã«ãã¡ãã£ã³ãã«å¿
é |
+
+次ã®çµã¿åããã¯ã`/path/to/layer_images/image2.txt`ã«å¯ŸããŠã`/path/to/layer_images/image2.png`, `/path/to/layer_images/image2_0.png`, `/path/to/layer_images/image2_1.png`ã®ããã«æ ŒçŽããŸãã
+
+
+
+### Sample for Image Dataset with Metadata JSONL File
+
+```toml
+# resolution, batch_size, num_repeats, enable_bucket, bucket_no_upscale should be set in either general or datasets
+# caption_extension is not required for metadata jsonl file
+# cache_directory is required for each dataset with metadata jsonl file
+
+# general configurations
+[general]
+resolution = [960, 544]
+batch_size = 1
+enable_bucket = true
+bucket_no_upscale = false
+
+[[datasets]]
+image_jsonl_file = "/path/to/metadata.jsonl"
+cache_directory = "/path/to/cache_directory" # required for metadata jsonl file
+num_repeats = 1 # optional, default is 1. Same as above.
+# multiple_target = true # optional, default is false. Set to true for Qwen-Image-Layered training.
+
+# other datasets can be added here. each dataset can have different configurations
+```
+
+JSONL file format for metadata:
+
+```json
+{"image_path": "/path/to/image1.jpg", "caption": "A caption for image1"}
+{"image_path": "/path/to/image2.jpg", "caption": "A caption for image2"}
+```
+
+For Qwen-Image-Layered training, set `multiple_target = true`. Also, in the metadata JSONL file, for each "image to be trained + segmentation (layer) results" combination, specify the image paths with numbered attributes like `image_path_0`, `image_path_1`, etc.
+
+```json
+{"image_path_0": "/path/to/image1_base.png", "image_path_1": "/path/to/image1_layer1.png", "image_path_2": "/path/to/image1_layer2.png", "caption": "A caption for image1"}
+{"image_path_0": "/path/to/image2_base.png", "image_path_1": "/path/to/image2_layer1.png", "image_path_2": "/path/to/image2_layer2.png", "caption": "A caption for image2"}
+```
+
+
+æ¥æ¬èª
+
+resolution, batch_size, num_repeats, enable_bucket, bucket_no_upscale 㯠general ãŸã㯠datasets ã®ã©ã¡ããã«èšå®ããŠãã ãããçç¥æã¯åé
ç®ã®ããã©ã«ãå€ã䜿çšãããŸãã
+
+metadata jsonl ãã¡ã€ã«ã䜿çšããå Žåãcaption_extension ã¯å¿
èŠãããŸããããŸããcache_directory ã¯å¿
é ã§ãã
+
+ãã£ãã·ã§ã³ã«ããããŒã¿ã»ãããšåæ§ã«ãè€æ°ã®ããŒã¿ã»ããã远å ã§ããŸããåããŒã¿ã»ããã«ã¯ç°ãªãèšå®ãæãŠãŸãã
+
+Qwen-Image-Layeredã®åŠç¿ã®å Žåã`multiple_target = true`ãèšå®ããŠãã ããããŸããmetadata jsonl ãã¡ã€ã«å
ã§ãåç»åã«å¯ŸããŠè€æ°ã®ã¿ãŒã²ããç»åãæå®ããå Žåã¯ã`image_path_0`, `image_path_1`ã®ããã«æ°åãä»äžããŠãã ããã
+
+
+
+
+### Sample for Video Dataset with Caption Text Files
+
+```toml
+# Common parameters (resolution, caption_extension, batch_size, num_repeats, enable_bucket, bucket_no_upscale)
+# can be set in either general or datasets sections
+# Video-specific parameters (target_frames, frame_extraction, frame_stride, frame_sample, max_frames, source_fps)
+# must be set in each datasets section
+
+# general configurations
+[general]
+resolution = [960, 544]
+caption_extension = ".txt"
+batch_size = 1
+enable_bucket = true
+bucket_no_upscale = false
+
+[[datasets]]
+video_directory = "/path/to/video_dir"
+cache_directory = "/path/to/cache_directory" # recommended to set cache directory
+target_frames = [1, 25, 45]
+frame_extraction = "head"
+source_fps = 30.0 # optional, source fps for videos in the directory, decimal number
+
+[[datasets]]
+video_directory = "/path/to/video_dir2"
+cache_directory = "/path/to/cache_directory2" # recommended to set cache directory
+frame_extraction = "full"
+max_frames = 45
+
+# other datasets can be added here. each dataset can have different configurations
+```
+
+`video_directory` is the directory containing videos. The captions are stored in text files with the same filename as the video, but with the extension specified by `caption_extension` (for example, `video1.mp4` and `video1.txt`).
+
+__In HunyuanVideo and Wan2.1, the number of `target_frames` must be "N\*4+1" (N=0,1,2,...).__ Otherwise, it will be truncated to the nearest "N*4+1".
+
+In FramePack, it is recommended to set `frame_extraction` to `full` and `max_frames` to a sufficiently large value, as it can handle longer videos. However, if the video is too long, an Out of Memory error may occur during VAE encoding. The videos in FramePack are trimmed to "N * latent_window_size * 4 + 1" frames (for example, 37, 73, 109... if `latent_window_size` is 9).
+
+If the `source_fps` is specified, the videos in the directory are considered to be at this frame rate, and some frames will be skipped to match the model's frame rate (24 for HunyuanVideo and 16 for Wan2.1). __The value must be a decimal number, for example, `30.0` instead of `30`.__ The skipping is done automatically and does not consider the content of the images. Please check if the converted data is correct using `--debug_mode video`.
+
+If `source_fps` is not specified (default), all frames of the video will be used regardless of the video's frame rate.
+
+
+æ¥æ¬èª
+
+å
±éãã©ã¡ãŒã¿ïŒresolution, caption_extension, batch_size, num_repeats, enable_bucket, bucket_no_upscaleïŒã¯ãgeneralãŸãã¯datasetsã®ããããã«èšå®ã§ããŸãã
+åç»åºæã®ãã©ã¡ãŒã¿ïŒtarget_frames, frame_extraction, frame_stride, frame_sample, max_frames, source_fpsïŒã¯ãådatasetsã»ã¯ã·ã§ã³ã«èšå®ããå¿
èŠããããŸãã
+
+`video_directory`ã¯åç»ãå«ããã£ã¬ã¯ããªã®ãã¹ã§ãããã£ãã·ã§ã³ã¯ãåç»ãšåããã¡ã€ã«åã§ã`caption_extension`ã§æå®ããæ¡åŒµåã®ããã¹ããã¡ã€ã«ã«æ ŒçŽããŠãã ããïŒäŸïŒ`video1.mp4`ãš`video1.txt`ïŒã
+
+__HunyuanVideoããã³Wan2.1ã§ã¯ãtarget_framesã®æ°å€ã¯ãN\*4+1ãã§ããå¿
èŠããããŸãã__ ãã以å€ã®å€ã®å Žåã¯ãæãè¿ãN\*4+1ã®å€ã«åãæšãŠãããŸãã
+
+FramePackã§ãåæ§ã§ãããFramePackã§ã¯åç»ãé·ããŠãåŠç¿å¯èœãªããã `frame_extraction`ã«`full` ãæå®ãã`max_frames`ãååã«å€§ããªå€ã«èšå®ããããšããå§ãããŸãããã ããããŸãã«ãé·ããããšVAEã®encodeã§Out of Memoryãšã©ãŒãçºçããå¯èœæ§ããããŸããFramePackã®åç»ã¯ããN * latent_window_size * 4 + 1ããã¬ãŒã ã«ããªãã³ã°ãããŸãïŒlatent_window_sizeã9ã®å Žåã37ã73ã109âŠâŠïŒã
+
+`source_fps`ãæå®ããå Žåããã£ã¬ã¯ããªå
ã®åç»ããã®ãã¬ãŒã ã¬ãŒããšã¿ãªããŠãã¢ãã«ã®ãã¬ãŒã ã¬ãŒãã«ããããã«ããã€ãã®ãã¬ãŒã ãã¹ãããããŸãïŒHunyuanVideoã¯24ãWan2.1ã¯16ïŒã__å°æ°ç¹ãå«ãæ°å€ã§æå®ããŠãã ããã__ äŸïŒ`30`ã§ã¯ãªã`30.0`ãã¹ãããã¯æ©æ¢°çã«è¡ãããç»åã®å
容ã¯èæ
®ããŸããã倿åŸã®ããŒã¿ãæ£ãããã`--debug_mode video`ã§ç¢ºèªããŠãã ããã
+
+`source_fps`ãæå®ããªãå Žåãåç»ã®ãã¬ãŒã ã¯ïŒåç»èªäœã®ãã¬ãŒã ã¬ãŒãã«é¢ä¿ãªãïŒãã¹ãŠäœ¿çšãããŸãã
+
+ä»ã®æ³šæäºé
ã¯ç»åããŒã¿ã»ãããšåæ§ã§ãã
+
+
+### Sample for Video Dataset with Metadata JSONL File
+
+```toml
+# Common parameters (resolution, caption_extension, batch_size, num_repeats, enable_bucket, bucket_no_upscale)
+# can be set in either general or datasets sections
+# Video-specific parameters (target_frames, frame_extraction, frame_stride, frame_sample, max_frames, source_fps)
+# must be set in each datasets section
+
+# caption_extension is not required for metadata jsonl file
+# cache_directory is required for each dataset with metadata jsonl file
+
+# general configurations
+[general]
+resolution = [960, 544]
+batch_size = 1
+enable_bucket = true
+bucket_no_upscale = false
+
+[[datasets]]
+video_jsonl_file = "/path/to/metadata.jsonl"
+target_frames = [1, 25, 45]
+frame_extraction = "head"
+cache_directory = "/path/to/cache_directory_head"
+source_fps = 30.0 # optional, source fps for videos in the jsonl file
+# same metadata jsonl file can be used for multiple datasets
+[[datasets]]
+video_jsonl_file = "/path/to/metadata.jsonl"
+target_frames = [1]
+frame_stride = 10
+cache_directory = "/path/to/cache_directory_stride"
+
+# other datasets can be added here. each dataset can have different configurations
+```
+
+JSONL file format for metadata:
+
+```json
+{"video_path": "/path/to/video1.mp4", "caption": "A caption for video1"}
+{"video_path": "/path/to/video2.mp4", "caption": "A caption for video2"}
+```
+
+`video_path` can be a directory containing multiple images.
+
+
+æ¥æ¬èª
+metadata jsonl ãã¡ã€ã«ã䜿çšããå Žåãcaption_extension ã¯å¿
èŠãããŸããããŸããcache_directory ã¯å¿
é ã§ãã
+
+`video_path`ã¯ãè€æ°ã®ç»åãå«ããã£ã¬ã¯ããªã®ãã¹ã§ãæ§ããŸããã
+
+ä»ã®æ³šæäºé
ã¯ä»ãŸã§ã®ããŒã¿ã»ãããšåæ§ã§ãã
+
+
+### frame_extraction Options
+
+- `head`: Extract the first N frames from the video.
+- `chunk`: Extract frames by splitting the video into chunks of N frames.
+- `slide`: Extract frames from the video with a stride of `frame_stride`.
+- `uniform`: Extract `frame_sample` samples uniformly from the video.
+- `full`: Extract all frames from the video.
+
+In the case of `full`, the entire video is used, but it is trimmed to "N*4+1" frames. It is also trimmed to the `max_frames` if it exceeds that value. To avoid Out of Memory errors, please set `max_frames`.
+
+The frame extraction methods other than `full` are recommended when the video contains repeated actions. `full` is recommended when each video represents a single complete motion.
+
+For example, consider a video with 40 frames. The following diagrams illustrate each extraction:
+
+
+æ¥æ¬èª
+
+- `head`: åç»ããæåã®Nãã¬ãŒã ãæœåºããŸãã
+- `chunk`: åç»ãNãã¬ãŒã ãã€ã«åå²ããŠãã¬ãŒã ãæœåºããŸãã
+- `slide`: `frame_stride`ã«æå®ãããã¬ãŒã ããšã«åç»ããNãã¬ãŒã ãæœåºããŸãã
+- `uniform`: åç»ããäžå®ééã§ã`frame_sample`åã®Nãã¬ãŒã ãæœåºããŸãã
+- `full`: åç»ããå
šãŠã®ãã¬ãŒã ãæœåºããŸãã
+
+`full`ã®å Žåãååç»ã®å
šäœãçšããŸããããN*4+1ãã®ãã¬ãŒã æ°ã«ããªãã³ã°ãããŸãããŸã`max_frames`ãè¶
ããå Žåããã®å€ã«ããªãã³ã°ãããŸããOut of Memoryãšã©ãŒãé¿ããããã«ã`max_frames`ãèšå®ããŠãã ããã
+
+`full`以å€ã®æœåºæ¹æ³ã¯ãåç»ãç¹å®ã®åäœãç¹°ãè¿ããŠããå Žåã«ãå§ãããŸãã`full`ã¯ããããã®åç»ãã²ãšã€ã®å®çµããã¢ãŒã·ã§ã³ã®å Žåã«ãå§ãããŸãã
+
+äŸãã°ã40ãã¬ãŒã ã®åç»ãäŸãšããæœåºã«ã€ããŠã以äžã®å³ã§èª¬æããŸãã
+
+
+```
+Original Video, 40 frames: x = frame, o = no frame
+oooooooooooooooooooooooooooooooooooooooo
+
+head, target_frames = [1, 13, 25] -> extract head frames:
+xooooooooooooooooooooooooooooooooooooooo
+xxxxxxxxxxxxxooooooooooooooooooooooooooo
+xxxxxxxxxxxxxxxxxxxxxxxxxooooooooooooooo
+
+chunk, target_frames = [13, 25] -> extract frames by splitting into chunks, into 13 and 25 frames:
+xxxxxxxxxxxxxooooooooooooooooooooooooooo
+oooooooooooooxxxxxxxxxxxxxoooooooooooooo
+ooooooooooooooooooooooooooxxxxxxxxxxxxxo
+xxxxxxxxxxxxxxxxxxxxxxxxxooooooooooooooo
+
+NOTE: Please do not include 1 in target_frames if you are using the frame_extraction "chunk". It will make the all frames to be extracted.
+泚: frame_extraction "chunk" ã䜿çšããå Žåãtarget_frames ã« 1 ãå«ããªãã§ãã ãããå
šãŠã®ãã¬ãŒã ãæœåºãããŠããŸããŸãã
+
+slide, target_frames = [1, 13, 25], frame_stride = 10 -> extract N frames with a stride of 10:
+xooooooooooooooooooooooooooooooooooooooo
+ooooooooooxooooooooooooooooooooooooooooo
+ooooooooooooooooooooxooooooooooooooooooo
+ooooooooooooooooooooooooooooooxooooooooo
+xxxxxxxxxxxxxooooooooooooooooooooooooooo
+ooooooooooxxxxxxxxxxxxxooooooooooooooooo
+ooooooooooooooooooooxxxxxxxxxxxxxooooooo
+xxxxxxxxxxxxxxxxxxxxxxxxxooooooooooooooo
+ooooooooooxxxxxxxxxxxxxxxxxxxxxxxxxooooo
+
+uniform, target_frames =[1, 13, 25], frame_sample = 4 -> extract `frame_sample` samples uniformly, N frames each:
+xooooooooooooooooooooooooooooooooooooooo
+oooooooooooooxoooooooooooooooooooooooooo
+oooooooooooooooooooooooooxoooooooooooooo
+ooooooooooooooooooooooooooooooooooooooox
+xxxxxxxxxxxxxooooooooooooooooooooooooooo
+oooooooooxxxxxxxxxxxxxoooooooooooooooooo
+ooooooooooooooooooxxxxxxxxxxxxxooooooooo
+oooooooooooooooooooooooooooxxxxxxxxxxxxx
+xxxxxxxxxxxxxxxxxxxxxxxxxooooooooooooooo
+oooooxxxxxxxxxxxxxxxxxxxxxxxxxoooooooooo
+ooooooooooxxxxxxxxxxxxxxxxxxxxxxxxxooooo
+oooooooooooooooxxxxxxxxxxxxxxxxxxxxxxxxx
+
+Three Original Videos, 20, 25, 35 frames: x = frame, o = no frame
+
+full, max_frames = 31 -> extract all frames (trimmed to the maximum length):
+video1: xxxxxxxxxxxxxxxxx (trimmed to 17 frames)
+video2: xxxxxxxxxxxxxxxxxxxxxxxxx (25 frames)
+video3: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (trimmed to 31 frames)
+```
+
+### Sample for Image Dataset with Control Images
+
+The dataset with control images. This is used for the one frame training for FramePack, or for FLUX.1 Kontext, FLUX.2 and Qwen-Image-Edit training.
+
+The dataset configuration with caption text files is similar to the image dataset, but with an additional `control_directory` parameter.
+
+The control images are used from the `control_directory` with the same filename (or different extension) as the image, for example, `image_dir/image1.jpg` and `control_dir/image1.png`. The images in `image_directory` should be the target images (the images to be generated during inference, the changed images). The `control_directory` should contain the starting images for inference. The captions should be stored in `image_directory`.
+
+If multiple control images are specified, the filenames of the control images should be numbered (excluding the extension). For example, specify `image_dir/image1.jpg` and `control_dir/image1_0.png`, `control_dir/image1_1.png`. You can also specify the numbers with four digits, such as `image1_0000.png`, `image1_0001.png`.
+
+The metadata JSONL file format is the same as the image dataset, but with an additional `control_path` parameter.
+
+```json
+{"image_path": "/path/to/image1.jpg", "control_path": "/path/to/control1.png", "caption": "A caption for image1"}
+{"image_path": "/path/to/image2.jpg", "control_path": "/path/to/control2.png", "caption": "A caption for image2"}
+
+If multiple control images are specified, the attribute names should be `control_path_0`, `control_path_1`, etc.
+
+```json
+{"image_path": "/path/to/image1.jpg", "control_path_0": "/path/to/control1_0.png", "control_path_1": "/path/to/control1_1.png", "caption": "A caption for image1"}
+{"image_path": "/path/to/image2.jpg", "control_path_0": "/path/to/control2_0.png", "control_path_1": "/path/to/control2_1.png", "caption": "A caption for image2"}
+```
+
+The control images can also have an alpha channel. In this case, the alpha channel of the image is used as a mask for the latent. This is only for the one frame training of FramePack.
+
+
+æ¥æ¬èª
+
+å¶åŸ¡ç»åãæã€ããŒã¿ã»ããã§ããçŸæç¹ã§ã¯FramePackã®åäžãã¬ãŒã åŠç¿ãFLUX.1 KontextãFLUX.2ãQwen-Image-Editã®åŠç¿ã«äœ¿çšããŸãã
+
+ãã£ãã·ã§ã³ãã¡ã€ã«ãçšããå Žåã¯`control_directory`ã远å ã§æå®ããŠãã ãããå¶åŸ¡ç»åã¯ãç»åãšåããã¡ã€ã«åïŒãŸãã¯æ¡åŒµåã®ã¿ãç°ãªããã¡ã€ã«åïŒã®ã`control_directory`ã«ããç»åã䜿çšãããŸãïŒäŸïŒ`image_dir/image1.jpg`ãš`control_dir/image1.png`ïŒã`image_directory`ã®ç»åã¯åŠç¿å¯Ÿè±¡ã®ç»åïŒæšè«æã«çæããç»åãå€ååŸã®ç»åïŒãšããŠãã ããã`control_directory`ã«ã¯æšè«æã®éå§ç»åãæ ŒçŽããŠãã ããããã£ãã·ã§ã³ã¯`image_directory`ãžæ ŒçŽããŠãã ããã
+
+è€æ°æã®å¶åŸ¡ç»åãæå®å¯èœã§ãããã®å Žåãå¶åŸ¡ç»åã®ãã¡ã€ã«åïŒæ¡åŒµåãé€ãïŒãžæ°åãä»äžããŠãã ãããäŸãã°ã`image_dir/image1.jpg`ãš`control_dir/image1_0.png`, `control_dir/image1_1.png`ã®ããã«æå®ããŸãã`image1_0000.png`, `image1_0001.png`ã®ããã«æ°åã4æ¡ã§æå®ããããšãã§ããŸãã
+
+ã¡ã¿ããŒã¿JSONLãã¡ã€ã«ã䜿çšããå Žåã¯ã`control_path`ã远å ããŠãã ãããè€æ°æã®å¶åŸ¡ç»åãæå®ããå Žåã¯ã`control_path_0`, `control_path_1`ã®ããã«æ°åãä»äžããŠãã ããã
+
+FramePackã®åäžãã¬ãŒã åŠç¿ã§ã¯ãå¶åŸ¡ç»åã¯ã¢ã«ãã¡ãã£ã³ãã«ãæã€ããšãã§ããŸãããã®å Žåãç»åã®ã¢ã«ãã¡ãã£ã³ãã«ã¯latentãžã®ãã¹ã¯ãšããŠäœ¿çšãããŸãã
+
+
+
+### Resizing Control Images for Image Dataset / ç»åããŒã¿ã»ããã§ã®å¶åŸ¡ç»åã®ãªãµã€ãº
+
+By default, the control images are resized to the same size as the target images. You can change the resizing method with the following options:
+
+- `no_resize_control`: Do not resize the control images. They will be cropped to match the rounding unit of each architecture (for example, 16 pixels).
+- `control_resolution`: Resize the control images to the specified resolution. For example, specify `control_resolution = [1024, 1024]`. Aspect Ratio Bucketing will be applied.
+
+```toml
+[[datasets]]
+# Image directory or metadata jsonl file as above
+image_directory = "/path/to/image_dir"
+control_directory = "/path/to/control_dir"
+control_resolution = [1024, 1024]
+no_resize_control = false
+```
+
+If both are specified, `control_resolution` is treated as the maximum resolution. That is, if the total number of pixels of the control image exceeds that of `control_resolution`, it will be resized to `control_resolution`.
+
+The recommended resizing method for control images may vary depending on the architecture. Please refer to the section for each architecture.
+
+The previous options `flux_kontext_no_resize_control` and `qwen_image_edit_no_resize_control` are still available, but it is recommended to use `no_resize_control`.
+
+The `qwen_image_edit_control_resolution` is also available, but it is recommended to use `control_resolution`.
+
+
+**The technical details of `no_resize_control`:**
+
+When this option is specified, the control image is trimmed to a multiple of 16 pixels (depending on the architecture) and converted to latent and passed to the model.
+
+Each element in the batch must have the same resolution, which is adjusted by advanced Aspect Ratio Bucketing (buckets are divided by the resolution of the target image and also the resolution of the control image).
+
+
+æ¥æ¬èª
+
+ããã©ã«ãã§ã¯ãå¶åŸ¡ç»åã¯ã¿ãŒã²ããç»åãšåããµã€ãºã«ãªãµã€ãºãããŸãã以äžã®ãªãã·ã§ã³ã§ããªãµã€ãºæ¹åŒã倿Žã§ããŸãã
+
+- `no_resize_control`: å¶åŸ¡ç»åããªãµã€ãºããŸãããã¢ãŒããã¯ãã£ããšã®äžžãåäœïŒ16ãã¯ã»ã«ãªã©ïŒã«åãããŠããªãã³ã°ãããŸãã
+- `control_resolution`: å¶åŸ¡ç»åãæå®ããè§£å床ã«ãªãµã€ãºããŸããäŸãã°ã`control_resolution = [1024, 1024]`ãšæå®ããŸããAspect Ratio Bucketingãé©çšãããŸãã
+
+äž¡æ¹ãåæã«æå®ããããšã`control_resolution`ã¯æå€§è§£å床ãšããŠæ±ãããŸããã€ãŸããå¶åŸ¡ç»åã®ç·ãã¯ã»ã«æ°ã`control_resolution`ã®ç·ãã¯ã»ã«æ°ãè¶
ããå Žåã`control_resolution`ã«ãªãµã€ãºãããŸãã
+
+ã¢ãŒããã¯ãã£ã«ãããæšå¥šã®å¶åŸ¡ç»åã®ãªãµã€ãºæ¹æ³ã¯ç°ãªããŸããåã¢ãŒããã¯ãã£ã®ç¯ãåç
§ããŠãã ããã
+
+以åã®ãªãã·ã§ã³`flux_kontext_no_resize_control`ãš`qwen_image_edit_no_resize_control`ã¯äœ¿çšå¯èœã§ããã`no_resize_control`ã䜿çšããããšãæšå¥šããŸãã
+
+`qwen_image_edit_control_resolution`ã䜿çšå¯èœã§ããã`control_resolution`ã䜿çšããããšãæšå¥šããŸãã
+
+**`no_resize_control`ã®æè¡çãªè©³çް:**
+
+ãã®ãªãã·ã§ã³ãæå®ãããå Žåãå¶åŸ¡ç»åã¯16ãã¯ã»ã«ã®åæ°ïŒã¢ãŒããã¯ãã£ã«äŸåïŒã«ããªãã³ã°ãããlatentã«å€æãããŠã¢ãã«ã«æž¡ãããŸãã
+
+ãããå
ã®åèŠçŽ ã¯åãè§£å床ã§ããå¿
èŠããããŸãããã¿ãŒã²ããç»åã®è§£å床ãšå¶åŸ¡ç»åã®è§£å床ã®äž¡æ¹ã§ãã±ãããåå²ãããé«åºŠãªAspect Ratio Bucketingã«ãã£ãŠèª¿æŽãããŸãã
+
+
+
+### Sample for Video Dataset with Control Images
+
+The dataset with control videos is used for training ControlNet models.
+
+The dataset configuration with caption text files is similar to the video dataset, but with an additional `control_directory` parameter.
+
+The control video for a video is used from the `control_directory` with the same filename (or different extension) as the video, for example, `video_dir/video1.mp4` and `control_dir/video1.mp4` or `control_dir/video1.mov`. The control video can also be a directory without an extension, for example, `video_dir/video1.mp4` and `control_dir/video1`.
+
+```toml
+[[datasets]]
+video_directory = "/path/to/video_dir"
+control_directory = "/path/to/control_dir" # required for dataset with control videos
+cache_directory = "/path/to/cache_directory" # recommended to set cache directory
+target_frames = [1, 25, 45]
+frame_extraction = "head"
+```
+
+The dataset configuration with metadata JSONL file is same as the video dataset, but metadata JSONL file must include the control video paths. The control video path can be a directory containing multiple images.
+
+```json
+{"video_path": "/path/to/video1.mp4", "control_path": "/path/to/control1.mp4", "caption": "A caption for video1"}
+{"video_path": "/path/to/video2.mp4", "control_path": "/path/to/control2.mp4", "caption": "A caption for video2"}
+```
+
+
+æ¥æ¬èª
+
+å¶åŸ¡åç»ãæã€ããŒã¿ã»ããã§ããControlNetã¢ãã«ã®åŠç¿ã«äœ¿çšããŸãã
+
+ãã£ãã·ã§ã³ãçšããå Žåã®ããŒã¿ã»ããèšå®ã¯åç»ããŒã¿ã»ãããšäŒŒãŠããŸããã`control_directory`ãã©ã¡ãŒã¿ã远å ãããŠããŸããäžã«ããäŸãåç
§ããŠãã ãããããåç»ã«å¯Ÿããå¶åŸ¡çšåç»ãšããŠãåç»ãšåããã¡ã€ã«åïŒãŸãã¯æ¡åŒµåã®ã¿ãç°ãªããã¡ã€ã«åïŒã®ã`control_directory`ã«ããåç»ã䜿çšãããŸãïŒäŸïŒ`video_dir/video1.mp4`ãš`control_dir/video1.mp4`ãŸãã¯`control_dir/video1.mov`ïŒããŸããæ¡åŒµåãªãã®ãã£ã¬ã¯ããªå
ã®ãè€æ°æã®ç»åãå¶åŸ¡çšåç»ãšããŠäœ¿çšããããšãã§ããŸãïŒäŸïŒ`video_dir/video1.mp4`ãš`control_dir/video1`ïŒã
+
+ããŒã¿ã»ããèšå®ã§ã¡ã¿ããŒã¿JSONLãã¡ã€ã«ã䜿çšããå Žåã¯ãåç»ãšå¶åŸ¡çšåç»ã®ãã¹ãå«ããå¿
èŠããããŸããå¶åŸ¡çšåç»ã®ãã¹ã¯ãè€æ°æã®ç»åãå«ããã£ã¬ã¯ããªã®ãã¹ã§ãæ§ããŸããã
+
+
+
+## Architecture-specific Settings / ã¢ãŒããã¯ãã£åºæã®èšå®
+
+The dataset configuration is shared across all architectures. However, some architectures may require additional settings or have specific requirements for the dataset.
+
+### FramePack
+
+For FramePack, you can set the latent window size for training. It is recommended to set it to 9 for FramePack training. The default value is 9, so you can usually omit this setting.
+
+```toml
+[[datasets]]
+fp_latent_window_size = 9
+```
+
+
+æ¥æ¬èª
+
+åŠç¿æã®latent window sizeãæå®ã§ããŸããFramePackã®åŠç¿ã«ãããŠã¯ã9ãæå®ããããšãæšå¥šããŸããçç¥æã¯9ã䜿çšãããŸãã®ã§ãéåžžã¯çç¥ããŠæ§ããŸããã
+
+
+
+### FramePack One Frame Training
+
+For the default one frame training of FramePack, you need to set the following parameters in the dataset configuration:
+
+```toml
+[[datasets]]
+fp_1f_clean_indices = [0]
+fp_1f_target_index = 9
+fp_1f_no_post = false
+```
+
+**Advanced Settings:**
+
+**Note that these parameters are still experimental, and the optimal values are not yet known.** The parameters may also change in the future.
+
+`fp_1f_clean_indices` sets the `clean_indices` value passed to the FramePack model. You can specify multiple indices. `fp_1f_target_index` sets the index of the frame to be trained (generated). `fp_1f_no_post` sets whether to add a zero value as `clean_latent_post`, default is `false` (add zero value).
+
+The number of control images should match the number of indices specified in `fp_1f_clean_indices`.
+
+The default values mean that the first image (control image) is at index `0`, and the target image (the changed image) is at index `9`.
+
+For training with 1f-mc, set `fp_1f_clean_indices` to `[0, 1]` and `fp_1f_target_index` to `9` (or another value). This allows you to use multiple control images to train a single generated image. The control images will be two in this case.
+
+```toml
+[[datasets]]
+fp_1f_clean_indices = [0, 1]
+fp_1f_target_index = 9
+fp_1f_no_post = false
+```
+
+For training with kisekaeichi, set `fp_1f_clean_indices` to `[0, 10]` and `fp_1f_target_index` to `1` (or another value). This allows you to use the starting image (the image just before the generation section) and the image following the generation section (equivalent to `clean_latent_post`) to train the first image of the generated video. The control images will be two in this case. `fp_1f_no_post` should be set to `true`.
+
+```toml
+[[datasets]]
+fp_1f_clean_indices = [0, 10]
+fp_1f_target_index = 1
+fp_1f_no_post = true
+```
+
+With `fp_1f_clean_indices` and `fp_1f_target_index`, you can specify any number of control images and any index of the target image for training.
+
+If you set `fp_1f_no_post` to `false`, the `clean_latent_post_index` will be `1 + fp1_latent_window_size`.
+
+You can also set the `no_2x` and `no_4x` options for cache scripts to disable the clean latents 2x and 4x.
+
+The 2x indices are `1 + fp1_latent_window_size + 1` for two indices (usually `11, 12`), and the 4x indices are `1 + fp1_latent_window_size + 1 + 2` for sixteen indices (usually `13, 14, ..., 28`), regardless of `fp_1f_no_post` and `no_2x`, `no_4x` settings.
+
+
+æ¥æ¬èª
+
+â» **以äžã®ãã©ã¡ãŒã¿ã¯ç ç©¶äžã§æé©å€ã¯ãŸã äžæã§ãã** ãŸããã©ã¡ãŒã¿èªäœã倿Žãããå¯èœæ§ããããŸãã
+
+ããã©ã«ãã®1ãã¬ãŒã åŠç¿ãè¡ãå Žåã`fp_1f_clean_indices`ã«`[0]`ãã`fp_1f_target_index`ã«`9`ïŒãŸãã¯5ãã15çšåºŠã®å€ïŒãã`no_post`ã«`false`ãèšå®ããŠãã ãããïŒèšè¿°äŸã¯è±èªçããã¥ã¡ã³ããåç
§ã以éåããïŒ
+
+**ããé«åºŠãªèšå®ïŒ**
+
+`fp_1f_clean_indices`ã¯ãFramePackã¢ãã«ã«æž¡ããã `clean_indices` ã®å€ãèšå®ããŸããè€æ°æå®ãå¯èœã§ãã`fp_1f_target_index`ã¯ãåŠç¿ïŒçæïŒå¯Ÿè±¡ã®ãã¬ãŒã ã®ã€ã³ããã¯ã¹ãèšå®ããŸãã`fp_1f_no_post`ã¯ã`clean_latent_post` ããŒãå€ã§è¿œå ãããã©ãããèšå®ããŸãïŒããã©ã«ãã¯`false`ã§ããŒãå€ã§è¿œå ããŸãïŒã
+
+å¶åŸ¡ç»åã®ææ°ã¯`fp_1f_clean_indices`ã«æå®ããã€ã³ããã¯ã¹ã®æ°ãšããããŠãã ããã
+
+ããã©ã«ãã®1ãã¬ãŒã åŠç¿ã§ã¯ãéå§ç»åïŒå¶åŸ¡ç»åïŒ1æãã€ã³ããã¯ã¹`0`ãçæå¯Ÿè±¡ã®ç»åïŒå€ååŸã®ç»åïŒãã€ã³ããã¯ã¹`9`ã«èšå®ããŠããŸãã
+
+1f-mcã®åŠç¿ãè¡ãå Žåã¯ã`fp_1f_clean_indices`ã« `[0, 1]`ãã`fp_1f_target_index`ã«`9`ãèšå®ããŠãã ãããããã«ããåç»ã®å
é ã®2æã®å¶åŸ¡ç»åã䜿çšããŠãåŸç¶ã®1æã®çæç»åãåŠç¿ããŸããå¶åŸ¡ç»åã¯2æã«ãªããŸãã
+
+kisekaeichiã®åŠç¿ãè¡ãå Žåã¯ã`fp_1f_clean_indices`ã« `[0, 10]`ãã`fp_1f_target_index`ã«`1`ïŒãŸãã¯ä»ã®å€ïŒãèšå®ããŠãã ãããããã¯ãéå§ç»åïŒçæã»ã¯ã·ã§ã³ã®çŽåã®ç»åïŒïŒ`clean_latent_pre`ã«çžåœïŒãšãçæã»ã¯ã·ã§ã³ã«ç¶ã1æã®ç»åïŒ`clean_latent_post`ã«çžåœïŒã䜿çšããŠãçæåç»ã®å
é ã®ç»åïŒ`target_index=1`ïŒãåŠç¿ããŸããå¶åŸ¡ç»åã¯2æã«ãªããŸãã`f1_1f_no_post`ã¯`true`ã«èšå®ããŠãã ããã
+
+`fp_1f_clean_indices`ãš`fp_1f_target_index`ãå¿çšããããšã§ãä»»æã®ææ°ã®å¶åŸ¡ç»åããä»»æã®ã€ã³ããã¯ã¹ãæå®ããŠåŠç¿ããããšãå¯èœã§ãã
+
+`fp_1f_no_post`ã`false`ã«èšå®ãããšã`clean_latent_post_index`㯠`1 + fp1_latent_window_size` ã«ãªããŸãã
+
+æšè«æã® `no_2x`ã`no_4x`ã«å¯Ÿå¿ããèšå®ã¯ããã£ãã·ã¥ã¹ã¯ãªããã®åŒæ°ã§è¡ããŸãããªãã2xã®index㯠`1 + fp1_latent_window_size + 1` ããã®2åïŒéåžžã¯`11, 12`ïŒã4xã®index㯠`1 + fp1_latent_window_size + 1 + 2` ããã®16åã«ãªããŸãïŒéåžžã¯`13, 14, ..., 28`ïŒã§ãããããã®å€ã¯`fp_1f_no_post`ã`no_2x`, `no_4x`ã®èšå®ã«é¢ããããåžžã«åãã§ãã
+
+
+
+### FLUX.1 Kontext [dev]
+
+The FLUX.1 Kontext dataset configuration uses an image dataset with control images. However, only one control image can be used.
+
+`fp_1f_*` settings are not used in FLUX.1 Kontext. Masks are also not used.
+
+If you set `no_resize_control`, it disables resizing of the control image.
+
+Since FLUX.1 Kontext assumes a fixed [resolution of control images](https://github.com/black-forest-labs/flux/blob/1371b2bc70ac80e1078446308dd5b9a2ebc68c87/src/flux/util.py#L584), it may be better to prepare the control images in advance to match these resolutions and use `no_resize_control`.
+
+
+æ¥æ¬èª
+
+FLUX.1 Kontextã®ããŒã¿ã»ããèšå®ã¯ãå¶åŸ¡ç»åãæã€ç»åããŒã¿ã»ããã䜿çšããŸãããã ããå¶åŸ¡ç»åã¯1æãã䜿çšã§ããŸããã
+
+`fp_1f_*`ã®èšå®ã¯FLUX.1 Kontextã§ã¯äœ¿çšããŸããããŸããã¹ã¯ã䜿çšãããŸããã
+
+ãŸãã`no_resize_control`ãèšå®ãããšãå¶åŸ¡ç»åã®ãªãµã€ãºãç¡å¹ã«ããŸãã
+
+FLUX.1 Kontextã¯[å¶åŸ¡ç»åã®åºå®è§£å床](https://github.com/black-forest-labs/flux/blob/1371b2bc70ac80e1078446308dd5b9a2ebc68c87/src/flux/util.py#L584)ãæ³å®ããŠããããããããã®è§£å床ã«ããããŠå¶åŸ¡ç»åãäºåã«çšæãã`no_resize_control`ã䜿çšããæ¹ãè¯ãå ŽåããããŸãã
+
+
+
+### Qwen-Image-Edit and Qwen-Image-Edit-2509/2511
+
+The Qwen-Image-Edit dataset configuration uses an image dataset with control images. However, only one control image can be used for the standard model (not `2509` or `2511`).
+
+By default, the control image is resized to the same resolution (and aspect ratio) as the image.
+
+If you set `no_resize_control`, it disables resizing of the control image. For example, if the image is 960x544 and the control image is 512x512, the control image will remain 512x512.
+
+Also, you can specify the resolution of the control image separately from the training image resolution by using `control_resolution`. If you want to resize the control images the same as the official code, specify [1024,1024]. **We strongly recommend specifying this value.**
+
+`no_resize_control` can be specified together with `control_resolution`.
+
+If `no_resize_control` or `control_resolution` is specified, each control image can have a different resolution. The control image is resized according to the specified settings.
+
+```toml
+[[datasets]]
+no_resize_control = false # optional, default is false. Disable resizing of control image
+control_resolution = [1024, 1024] # optional, default is None. Specify the resolution of the control image.
+```
+
+`fp_1f_*` settings are not used in Qwen-Image-Edit.
+
+
+æ¥æ¬èª
+
+Qwen-Image-Editã®ããŒã¿ã»ããèšå®ã¯ãå¶åŸ¡ç»åãæã€ç»åããŒã¿ã»ããã䜿çšããŸããè€æ°æã®å¶åŸ¡ç»åã䜿çšå¯èœã§ãããç¡å°ïŒ`2509`ãŸãã¯`2511`ã§ãªãïŒã¢ãã«ã§ã¯1æã®ã¿äœ¿çšå¯èœã§ãã
+
+ããã©ã«ãã§ã¯ãå¶åŸ¡ç»åã¯ç»åãšåãè§£å床ïŒããã³ã¢ã¹ãã¯ãæ¯ïŒã«ãªãµã€ãºãããŸãã
+
+`no_resize_control`ãèšå®ãããšãå¶åŸ¡ç»åã®ãªãµã€ãºãç¡å¹ã«ããŸããããšãã°ãç»åã960x544ã§å¶åŸ¡ç»åã512x512ã®å Žåãå¶åŸ¡ç»åã¯512x512ã®ãŸãŸã«ãªããŸãã
+
+ãŸãã`control_resolution`ã䜿çšããããšã§ãå¶åŸ¡ç»åã®è§£å床ãåŠç¿ç»åã®è§£å床ãšç°ãªãå€ã«æå®ã§ããŸããå
¬åŒã®ã³ãŒããšåãããã«å¶åŸ¡ç»åããªãµã€ãºãããå Žåã¯ã[1024, 1024]ãæå®ããŠãã ããã**ãã®å€ã®æå®ãåŒ·ãæšå¥šããŸãã**
+
+`no_resize_control`ãš `control_resolution`ã¯åæã«æå®ã§ããŸãã
+
+`no_resize_control`ãŸãã¯`control_resolution`ãæå®ãããå Žåãåå¶åŸ¡ç»åã¯ç°ãªãè§£å床ãæã€ããšãã§ããŸããå¶åŸ¡ç»åã¯æå®ãããèšå®ã«åŸã£ãŠãªãµã€ãºãããŸãã
+
+```toml
+[[datasets]]
+no_resize_control = false # ãªãã·ã§ã³ãããã©ã«ãã¯falseãå¶åŸ¡ç»åã®ãªãµã€ãºãç¡å¹ã«ããŸã
+control_resolution = [1024, 1024] # ãªãã·ã§ã³ãããã©ã«ãã¯Noneãå¶åŸ¡ç»åã®è§£å床ãæå®ããŸã
+```
+
+`fp_1f_*`ã®èšå®ã¯Qwen-Image-Editã§ã¯äœ¿çšããŸããã
+
+
+
+### FLUX.2
+
+The FLUX.2 dataset configuration uses an image dataset with control images (it can also be trained without control images). Multiple control images can be used.
+
+`fp_1f_*` settings are not used in FLUX.2.
+
+If you set `no_resize_control`, it disables resizing of the control images. If you want to follow the official FLUX.2 inference settings, please specify this option.
+
+You can specify the resolution of the control images separately from the training image resolution by using `control_resolution`. If you want to follow the official FLUX.2 inference settings, specify [2024, 2024] (note that it is not 2048) when there is one control image, and [1024, 1024] when there are multiple control images, together with the `no_resize_control` option.
+
+
+æ¥æ¬èª
+
+FLUX.2ã®ããŒã¿ã»ããèšå®ã¯ãå¶åŸ¡ç»åãæã€ç»åããŒã¿ã»ããã䜿çšããŸãïŒå¶åŸ¡ç»åãªãã§ãåŠç¿ã§ããŸãïŒãè€æ°æã®å¶åŸ¡ç»åã䜿çšå¯èœã§ãã
+
+`fp_1f_*`ã®èšå®ã¯FLUX.2ã§ã¯äœ¿çšããŸããã
+
+`no_resize_control`ãèšå®ãããšãå¶åŸ¡ç»åã®ãªãµã€ãºãç¡å¹ã«ããŸããFLUX.2å
¬åŒã®æšè«æèšå®ã«æºæ ããå Žåã¯ããã®ãªãã·ã§ã³ãæå®ããŠãã ããã
+
+`control_resolution`ã䜿çšããŠãå¶åŸ¡ç»åã®è§£å床ãåŠç¿ç»åã®è§£å床ãšç°ãªãå€ã«æå®ã§ããŸããFLUX.2å
¬åŒã®æšè«æèšå®ã«æºæ ããå Žåã¯ã`no_resize_control`ãªãã·ã§ã³ãšåæã«ãå¶åŸ¡ç»åã1æã®å Žåã¯`[2024, 2024]`ïŒ2048ã§ã¯ãªãã®ã§æ³šæïŒãå¶åŸ¡ç»åãè€æ°ã®å Žåã¯`[1024, 1024]`ãæå®ããŠãã ããã
+
+
+
+## Specifications
+
+```toml
+# general configurations
+[general]
+resolution = [960, 544] # optional, [W, H], default is [960, 544]. This is the default resolution for all datasets
+caption_extension = ".txt" # optional, default is None. This is the default caption extension for all datasets
+batch_size = 1 # optional, default is 1. This is the default batch size for all datasets
+num_repeats = 1 # optional, default is 1. Number of times to repeat the dataset. Useful to balance the multiple datasets with different sizes.
+enable_bucket = true # optional, default is false. Enable bucketing for datasets
+bucket_no_upscale = false # optional, default is false. Disable upscaling for bucketing. Ignored if enable_bucket is false
+
+### Image Dataset
+
+# sample image dataset with caption text files
+[[datasets]]
+image_directory = "/path/to/image_dir"
+caption_extension = ".txt" # required for caption text files, if general caption extension is not set
+resolution = [960, 544] # required if general resolution is not set
+batch_size = 4 # optional, overwrite the default batch size
+num_repeats = 1 # optional, overwrite the default num_repeats
+enable_bucket = false # optional, overwrite the default bucketing setting
+bucket_no_upscale = true # optional, overwrite the default bucketing setting
+cache_directory = "/path/to/cache_directory" # optional, default is None to use the same directory as the image directory. NOTE: caching is always enabled
+control_directory = "/path/to/control_dir" # optional, required for dataset with control images
+
+# sample image dataset with metadata **jsonl** file
+[[datasets]]
+image_jsonl_file = "/path/to/metadata.jsonl" # includes pairs of image files and captions
+resolution = [960, 544] # required if general resolution is not set
+cache_directory = "/path/to/cache_directory" # required for metadata jsonl file
+# caption_extension is not required for metadata jsonl file
+# batch_size, num_repeats, enable_bucket, bucket_no_upscale are also available for metadata jsonl file
+
+### Video Dataset
+
+# sample video dataset with caption text files
+[[datasets]]
+video_directory = "/path/to/video_dir"
+caption_extension = ".txt" # required for caption text files, if general caption extension is not set
+resolution = [960, 544] # required if general resolution is not set
+
+control_directory = "/path/to/control_dir" # optional, required for dataset with control images
+
+# following configurations must be set in each [[datasets]] section for video datasets
+
+target_frames = [1, 25, 79] # required for video dataset. list of video lengths to extract frames. each element must be N*4+1 (N=0,1,2,...)
+
+# NOTE: Please do not include 1 in target_frames if you are using the frame_extraction "chunk". It will make the all frames to be extracted.
+
+frame_extraction = "head" # optional, "head" or "chunk", "full", "slide", "uniform". Default is "head"
+frame_stride = 1 # optional, default is 1, available for "slide" frame extraction
+frame_sample = 4 # optional, default is 1 (same as "head"), available for "uniform" frame extraction
+max_frames = 129 # optional, default is 129. Maximum number of frames to extract, available for "full" frame extraction
+# batch_size, num_repeats, enable_bucket, bucket_no_upscale, cache_directory are also available for video dataset
+
+# sample video dataset with metadata jsonl file
+[[datasets]]
+video_jsonl_file = "/path/to/metadata.jsonl" # includes pairs of video files and captions
+
+target_frames = [1, 79]
+
+cache_directory = "/path/to/cache_directory" # required for metadata jsonl file
+# frame_extraction, frame_stride, frame_sample, max_frames are also available for metadata jsonl file
+```
+
+
+
+The metadata with .json file will be supported in the near future.
diff --git a/docs/flux_2.md b/docs/flux_2.md
new file mode 100644
index 0000000000000000000000000000000000000000..2623cb00f0399847e46478e2146e85284328954e
--- /dev/null
+++ b/docs/flux_2.md
@@ -0,0 +1,285 @@
+# FLUX.2
+
+## Overview / æŠèŠ
+
+This document describes the usage of the [FLUX.2](https://huggingface.co/black-forest-labs/FLUX.2-dev) \[dev\] architecture within the Musubi Tuner framework. FLUX.2-dev is an image generation model and edit model that can take a reference image as input.
+
+This feature is experimental.
+
+Latent pre-caching, training, and inference options can be found in the `--help` output. Many options are shared with HunyuanVideo, so refer to the [HunyuanVideo documentation](./hunyuan_video.md) as needed.
+
+
+æ¥æ¬èª
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+You need to download the DiT, AE, Text Encoder models.
+
+### FLUX.2 [dev]
+
+- **DiT, AE**: Download from the [black-forest-labs/FLUX.2-dev](https://huggingface.co/black-forest-labs/FLUX.2-dev) repository. Use `flux2-dev.safetensors` and `ae.safetensors`. The weights in the subfolder are in Diffusers format and cannot be used.
+- **Text Encoder (Mistral 3)**: Download all the split files from the [black-forest-labs/FLUX.2-dev](https://huggingface.co/black-forest-labs/FLUX.2-dev) repository and specify the first file (e.g., `00001-of-00010.safetensors`) in the arguments.
+
+
+æ¥æ¬èª
+
+DiT, AE, Text Encoder ã®ã¢ãã«ãããŠã³ããŒãããå¿
èŠããããŸãã
+
+- **DiT, AE**: [black-forest-labs/FLUX.2-dev](https://huggingface.co/black-forest-labs/FLUX.2-dev) ãªããžããªããããŠã³ããŒãããŠãã ããã`flux2-dev.safetensors` ããã³ `ae.safetensors` ã䜿çšããŠãã ããããµããã©ã«ãå
ã®éã¿ã¯Diffusers圢åŒãªã®ã§äœ¿çšã§ããŸããã
+- **Text Encoder (Mistral 3)**: Download all the split files from the [black-forest-labs/FLUX.2-dev](https://huggingface.co/black-forest-labs/FLUX.2-dev) repository and specify the first file (e.g., `00001-of-00010.safetensors`) in the arguments.
+
+
+### FLUX.2 [klein] 4B / base 4B
+
+- **DiT 4B**: Download from the [black-forest-labs/FLUX.2-klein-4B](https://huggingface.co/black-forest-labs/FLUX.2-klein-4B) repository. Use `flux2-klein-4b.safetensors`.
+- **DiT base 4B**: Download from the [black-forest-labs/FLUX.2-klein-base-4B](https://huggingface.co/black-forest-labs/FLUX.2-klein-base-4B) repository. Use `flux2-klein-base-4b.safetensors`.
+- **AE**: Download from the [black-forest-labs/FLUX.2](https://huggingface.co/black-forest-labs/FLUX.2-dev) repository. Use `ae.safetensors`. `vae/diffusion_pytorch_model.safetensors` in the subfolder is in Diffusers format and cannot be used.
+- **Qwen3 4B Text Encoder**: Download all the split files from the [black-forest-labs/FLUX.2-klein-4B](https://huggingface.co/black-forest-labs/FLUX.2-klein-4B) repository and specify the first file (e.g., `00001-of-00002.safetensors`) in the arguments.
+
+If you already have the weights for Qwen3 4B used in Z-Image, you can use them as is. Refer to the [Z-Image documentation](./zimage.md#download-the-model--ã¢ãã«ã®ããŠã³ããŒã) for details.
+
+
+æ¥æ¬èª
+
+- **DiT 4B**: [black-forest-labs/FLUX.2-klein-4B](https://huggingface.co/black-forest-labs/FLUX.2-klein-4B) ãªããžããªããããŠã³ããŒãããŠãã ããã`flux2-klein-4b.safetensors` ã䜿çšããŠãã ããã
+- **DiT base 4B**: [black-forest-labs/FLUX.2-klein-base-4B](https://huggingface.co/black-forest-labs/FLUX.2-klein-base-4B) ãªããžããªããããŠã³ããŒãããŠãã ããã`flux2-klein-base-4b.safetensors` ã䜿çšããŠãã ããã
+- **AE**: [black-forest-labs/FLUX.2](https://huggingface.co/black-forest-labs/FLUX.2-dev) ãªããžããªããããŠã³ããŒãããŠãã ããã`ae.safetensors` ã䜿çšããŠãã ããããµããã©ã«ãå
ã® `vae/diffusion_pytorch_model.safetensors` ã¯Diffusers圢åŒãªã®ã§äœ¿çšã§ããŸããã
+- **Qwen3 4B Text Encoder**: [black-forest-labs/FLUX.2-klein-4B](https://huggingface.co/black-forest-labs/FLUX.2-klein-4B) ãªããžããªããåå²ããããã¹ãŠã®ãã¡ã€ã«ãããŠã³ããŒãããæåã®ãã¡ã€ã«ïŒäŸïŒ`00001-of-00002.safetensors`ïŒãåŒæ°ã§æå®ããŠãã ããã
+
+Qwen3 4Bã®éã¿ã¯ããã§ã«Z-Imageã§çšããŠãããã®ãããã°ãã®ãŸãŸäœ¿çšå¯èœã§ãã[Z-Imageã®ããã¥ã¡ã³ã](./zimage.md#download-the-model--ã¢ãã«ã®ããŠã³ããŒã)ãåç
§ããŠãã ããã
+
+
+
+### FLUX.2 [klein] 9B / base 9B
+
+- **DiT 9B**: Download from the [black-forest-labs/FLUX.2-klein-9B](https://huggingface.co/black-forest-labs/FLUX.2-klein-9B) repository. Use `flux2-klein-9b.safetensors`.
+- **DiT base 9B**: Download from the [black-forest-labs/FLUX.2-klein-base-9B](https://huggingface.co/black-forest-labs/FLUX.2-klein-base-9B) repository. Use `flux2-klein-base-9b.safetensors`.
+- **AE**: Download from the [black-forest-labs/FLUX.2](https://huggingface.co/black-forest-labs/FLUX.2-dev) repository. Use `ae.safetensors`. `vae/diffusion_pytorch_model.safetensors` in the subfolder is in Diffusers format and cannot be used.
+- **Qwen3 8B Text Encoder**: Download all the split files from the [black-forest-labs/FLUX.2-klein-9B](https://huggingface.co/black-forest-labs/FLUX.2-klein-9B) repository and specify the first file (e.g., `00001-of-00004.safetensors`) in the arguments.
+
+
+æ¥æ¬èª
+
+- **DiT 9B**: [black-forest-labs/FLUX.2-klein-9B](https://huggingface.co/black-forest-labs/FLUX.2-klein-9B) ãªããžããªããããŠã³ããŒãããŠãã ããã`flux2-klein-9b.safetensors` ã䜿çšããŠãã ããã
+- **DiT base 9B**: [black-forest-labs/FLUX.2-klein-base-9B](https://huggingface.co/black-forest-labs/FLUX.2-klein-base-9B) ãªããžããªããããŠã³ããŒãããŠãã ããã`flux2-klein-base-9b.safetensors` ã䜿çšããŠãã ããã
+- **AE**: [black-forest-labs/FLUX.2](https://huggingface.co/black-forest-labs/FLUX.2-dev) ãªããžããªããããŠã³ããŒãããŠãã ããã`ae.safetensors` ã䜿çšããŠãã ããããµããã©ã«ãå
ã® `vae/diffusion_pytorch_model.safetensors` ã¯Diffusers圢åŒãªã®ã§äœ¿çšã§ããŸããã
+- **Qwen3 8B Text Encoder**: [black-forest-labs/FLUX.2-klein-9B](https://huggingface.co/black-forest-labs/FLUX.2-klein-9B) ãªããžããªããåå²ããããã¹ãŠã®ãã¡ã€ã«ãããŠã³ããŒãããæåã®ãã¡ã€ã«ïŒäŸïŒ`00001-of-00004.safetensors`ïŒãåŒæ°ã§æå®ããŠãã ããã
+
+
+
+## Specifying Model Version / ã¢ãã«ããŒãžã§ã³ã®æå®
+
+When specifying the model version in various scripts, use the following options:
+
+|type|version|sampling guidance scale|num sampling steps|
+|----|--------|----|----|
+|flux.2-dev|`--model_version dev`|4.0|50|
+|flux.2-klein-4b|`--model_version klein-4b`|1.0|4|
+|flux.2-klein-base-4b|`--model_version klein-base-4b`|4.0|50|
+|flux.2-klein-9b|`--model_version klein-9b`|1.0|4|
+|flux.2-klein-base-9b|`--model_version klein-base-9b`|4.0|50|
+
+For model training, it is recommended to use klein base 4B or 9B. The dev and klein 4B/9B are distilled models primarily intended for inference.
+
+
+æ¥æ¬èª
+
+ããããã®ã¹ã¯ãªããã§ã¢ãã«ããŒãžã§ã³ãæå®ããéã«ã¯ãè±èªçã®æç« ãåèã«ããŠ`--model_version`ãªãã·ã§ã³ã䜿çšããŠãã ããã
+
+ã¢ãã«ã®åŠç¿ãè¡ãå Žåã¯ãklein base 4BãŸãã¯9Bã䜿çšããããšããå§ãããŸããdevãããã³klein 4B/9Bã¯èžçã¢ãã«ã§ãããäž»ã«æšè«çšã§ãã
+
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching uses a dedicated script for FLUX.2.
+
+```bash
+python src/musubi_tuner/flux_2_cache_latents.py \
+ --dataset_config path/to/toml \
+ --vae path/to/ae_model \
+ --model_version dev
+```
+
+- Note that the `--vae` argument is required, not `--ae`.
+- Uses `flux_2_cache_latents.py`.
+- The dataset must be an image dataset.
+- Use the `--model_version` option for Flux.2 Klein training (if omitted, defaults to `dev`).
+- The `control_images` in the dataset config is used as the reference image. See [Dataset Config](./dataset_config.md#flux1-kontext-dev) for details.
+- `--vae_dtype` option is available to specify the VAE weight data type. Default is `float32`, `bfloat16` can also be specified. Specifying `bfloat16` reduces VRAM usage.
+
+
+æ¥æ¬èª
+
+latentã®äºåãã£ãã·ã³ã°ã¯FLUX.2å°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `flux_2_cache_latents.py`ã䜿çšããŸãã
+- `--ae`ã§ã¯ãªãã`--vae`åŒæ°ãæå®ããŠãã ããã
+- ããŒã¿ã»ããã¯ç»åããŒã¿ã»ããã§ããå¿
èŠããããŸãã
+- ããŒã¿ã»ããèšå®ã®`control_images`ãåç
§ç»åãšããŠäœ¿çšãããŸãã詳现ã¯[ããŒã¿ã»ããèšå®](./dataset_config.md#flux1-kontext-dev)ãåç
§ããŠãã ããã
+- `--vae_dtype`ãªãã·ã§ã³ã¯ãVAEã®éã¿ããŒã¿åãæå®ããããã®ãªãã·ã§ã³ã§ããããã©ã«ãã¯`float32`ã§ã`bfloat16`ãæå®å¯èœã§ãã`bfloat16`ãæå®ãããšVRAM䜿çšéãåæžãããŸãã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text encoder output pre-caching also uses a dedicated script.
+
+```bash
+python src/musubi_tuner/flux_2_cache_text_encoder_outputs.py \
+ --dataset_config path/to/toml \
+ --text_encoder path/to/text_encoder \
+ --batch_size 16 \
+ --model_version dev
+```
+
+- Uses `flux_2_cache_text_encoder_outputs.py`.
+- Requires `--text_encoder` argument
+- Use the `--model_version` option for Flux.2 Klein training (if omitted, defaults to `dev`).
+- Use `--fp8_text_encoder` option to run the Text Encoder in fp8 mode for VRAM savings.
+- The larger the batch size, the more VRAM is required. Adjust `--batch_size` according to your VRAM capacity.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°ãå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `flux_2_cache_text_encoder_outputs.py`ã䜿çšããŸãã
+- ããã¹ããšã³ã³ãŒããŒãfp8ã¢ãŒãã§å®è¡ããããã®`--fp8_text_encoder`ãªãã·ã§ã³ã䜿çšããŸãã
+- ããããµã€ãºã倧ããã»ã©ãããå€ãã®VRAMãå¿
èŠã§ããVRAM容éã«å¿ããŠ`--batch_size`ã調æŽããŠãã ããã
+
+
+
+## Training / åŠç¿
+
+Training uses a dedicated script `flux_2_train_network.py`.
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/flux_2_train_network.py \
+ --model_version dev \
+ --dit path/to/dit_model \
+ --vae path/to/ae_model \
+ --text_encoder path/to/text_encoder \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 \
+ --timestep_sampling flux2_shift --weighting_scheme none \
+ --optimizer_type adamw8bit --learning_rate 1e-4 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_flux_2 --network_dim 32 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+- Uses `flux_2_train_network.py`.
+- **Requires** specifying `--vae` (not `--ae`), `--text_encoder`
+- **Requires** specifying `--network_module networks.lora_flux_2`.
+- `--mixed_precision bf16` is recommended for FLUX.2 training.
+- `--timestep_sampling flux2_shift` is recommended for FLUX.2.
+- Use the `--model_version` option for Flux.2 Klein training (if omitted, defaults to `dev`).
+- Memory saving options like `--fp8_base --fp8_scaled` (for DiT, specify both) and `--fp8_text_encoder` (for Text Encoder) are available. `--fp8_scaled` is recommended when using `--fp8_base` for DiT.
+- `--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+- `--vae_dtype` option is available to specify the VAE weight data type. Default is `float32`, `bfloat16` can also be specified.
+- Instead of `--sdpa`, `--xformers` and `--flash_attn` can also be used. Make sure the related libraries are installed.
+
+`--fp8_text_encoder` option is not available for dev (Mistral 3).
+
+Some blocks can be offloaded to CPU for memory savings using the `--blocks_to_swap` option. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+
+In FLUX.2, since DoubleStreamBlock uses more memory than SingleStreamBlock and the number of each block varies by model, the actual number of offloaded blocks is automatically adjusted (double block + single block * 2 = number of swap blocks).
+
+The maximum values of `blocks_to_swap` per model when combined with the `--fp8_base --fp8_scaled` options are as follows:
+
+|Model Type|Maximum blocks_to_swap|
+|----|----|
+|flux.2-dev|29|
+|flux.2-klein-4b|13|
+|flux.2-klein-9b|16|
+
+
+æ¥æ¬èª
+
+FLUX.2ã®åŠç¿ã¯å°çšã®ã¹ã¯ãªãã`flux_2_train_network.py`ã䜿çšããŸãã
+
+- `flux_2_train_network.py`ã䜿çšããŸãã
+- `--ae`ã`--text_encoder` ãæå®ããå¿
èŠããããŸãã
+- `--network_module networks.lora_flux_2`ãæå®ããå¿
èŠããããŸãã
+- FLUX.2ã®åŠç¿ã«ã¯`--mixed_precision bf16`ãæšå¥šããŸãã
+- FLUX.2ã«ã¯`--timestep_sampling flux2_shift`ãæšå¥šããŸãã
+- `--fp8_base --fp8_scaled`ïŒDiTçšãäž¡æ¹æå®ããŠãã ããïŒã`--fp8_text_encoder`ïŒããã¹ããšã³ã³ãŒããŒçšïŒãªã©ã®ã¡ã¢ãªç¯çŽãªãã·ã§ã³ãå©çšå¯èœã§ãã`--fp8_base`ãDiTã«äœ¿çšããå Žåã¯ã`--fp8_scaled`ãæšå¥šããŸãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãå©çšå¯èœã§ãã
+- `--vae_dtype`ãªãã·ã§ã³ã¯ãVAEã®éã¿ããŒã¿åãæå®ããããã®ãªãã·ã§ã³ã§ããããã©ã«ãã¯`float32`ã§ã`bfloat16`ãæå®å¯èœã§ãã
+- `--sdpa`ã®ä»£ããã«`--xformers`ããã³`--flash_attn`ã䜿çšããããšãå¯èœã§ããé¢é£ããã©ã€ãã©ãªãã€ã³ã¹ããŒã«ãããŠããããšã確èªããŠãã ããã
+
+`--fp8_text_encoder`ãªãã·ã§ã³ã¯devïŒMistral 3ïŒã§ã¯äœ¿çšã§ããŸããã
+
+äžéšã®ãããã¯ãã¡ã¢ãªç¯çŽã®ããã«CPUã«ãªãããŒããã`--blocks_to_swap`ãªãã·ã§ã³ãå©çšå¯èœã§ãã詳现ã¯[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md#memory-optimization)ãåç
§ããŠãã ããã
+
+FLUX.2ã§ã¯DoubleStreamBlockã®ã¡ã¢ãªäœ¿çšéãSingleStreamBlockããã倧ããã®ãšãããããã®ãããã¯æ°ãã¢ãã«ããšã«ç°ãªããããå®éã«ãªãããŒãããããããã¯æ°ã¯èªå調æŽãããŸãïŒdouble block + single block * 2 = swap blockæ°ïŒã
+
+`--fp8_base --fp8_scaled`ãªãã·ã§ã³ãšçµã¿åããããšãã®ãã¢ãã«ããšã®`blocks_to_swap`ã®æå€§å€ã¯ä»¥äžã®éãã§ãã
+
+|ã¢ãã«çš®é¡|blocks_to_swapã®æå€§å€|
+|----|----|
+|flux.2-dev|29|
+|flux.2-klein-4b|13|
+|flux.2-klein-9b|16|
+
+
+
+## Inference / æšè«
+
+Inference uses a dedicated script `flux_2_generate_image.py`.
+
+```bash
+python src/musubi_tuner/flux_2_generate_image.py \
+ --model_version dev \
+ --dit path/to/dit_model \
+ --vae path/to/ae_model \
+ --text_encoder path/to/text_encoder \
+ --control_image_path path/to/control_image.jpg \
+ --prompt "A cat" \
+ --image_size 1024 1024 --infer_steps 50 \
+ --fp8_scaled \
+ --save_path path/to/save/dir --output_type images \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+- Uses `flux_2_generate_image.py`.
+- **Requires** specifying `--vae`, `--text_encoder`
+- **Requires** specifying `--control_image_path` for the reference image.
+- Use the `--model_version` option for Flux.2 Klein inference (if omitted, defaults to `dev`).
+- `--no_resize_control`: By default, the control image is resized to the recommended resolution for FLUX.2. If you specify this option, this resizing is skipped, and the image is used as-is.
+
+ This feature is not officially supported by FLUX.2, but it is available for experimental use.
+
+- `--image_size` is the size of the generated image, height and width are specified in that order.
+- `--prompt`: Prompt for generation.
+- `--fp8_scaled` option is available for DiT to reduce memory usage. Quality may be slightly lower. `--fp8_text_encoder` option is available to reduce memory usage of Text Encoder. `--fp8` alone is also an option for DiT but `--fp8_scaled` potentially offers better quality.
+- LoRA loading options (`--lora_weight`, `--lora_multiplier`, `--include_patterns`, `--exclude_patterns`) are available. `--lycoris` is also supported.
+- `--embedded_cfg_scale` (default 2.5) controls the distilled guidance scale.
+- `--save_merged_model` option is available to save the DiT model after merging LoRA weights. Inference is skipped if this is specified.
+
+
+æ¥æ¬èª
+
+FLUX.2ã®æšè«ã¯å°çšã®ã¹ã¯ãªãã`flux_2_generate_image.py`ã䜿çšããŸãã
+
+- `flux_2_generate_image.py`ã䜿çšããŸãã
+- `--vae`ã`--text_encoder` ãæå®ããå¿
èŠããããŸãã
+- `--control_image_path`ãæå®ããå¿
èŠããããŸãïŒåç
§ç»åïŒã
+- `--no_resize_control`: ããã©ã«ãã§ã¯ãåç
§ç»åã¯FLUX.2ã®æšå¥šè§£å床ã«ãªãµã€ãºãããŸãããã®ãªãã·ã§ã³ãæå®ãããšããã®ãªãµã€ãºã¯ã¹ããããããç»åã¯ãã®ãŸãŸã®ãµã€ãºã§äœ¿çšãããŸãã
+
+ ãã®æ©èœã¯FLUX.2ã§ã¯å
¬åŒã«ãµããŒããããŠããŸããããå®éšçã«äœ¿çšå¯èœã§ãã
+
+- `--image_size`ã¯çæããç»åã®ãµã€ãºã§ãé«ããšå¹
ããã®é çªã§æå®ããŸãã
+- `--prompt`: çæçšã®ããã³ããã§ãã
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ããå質ã¯ããäœäžããå¯èœæ§ããããŸãããŸãText Encoder 1ã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_text_encoder`ãªãã·ã§ã³ãæå®å¯èœã§ããDiTçšã«`--fp8`åç¬ã®ãªãã·ã§ã³ãçšæãããŠããŸããã`--fp8_scaled`ã®æ¹ãå質ãè¯ãå¯èœæ§ããããŸãã
+- LoRAã®èªã¿èŸŒã¿ãªãã·ã§ã³ïŒ`--lora_weight`ã`--lora_multiplier`ã`--include_patterns`ã`--exclude_patterns`ïŒãå©çšå¯èœã§ããLyCORISããµããŒããããŠããŸãã
+- `--embedded_cfg_scale`ïŒããã©ã«ã2.5ïŒã¯ãèžçãããã¬ã€ãã³ã¹ã¹ã±ãŒã«ãå¶åŸ¡ããŸãã
+- `--save_merged_model`ãªãã·ã§ã³ã¯ãLoRAã®éã¿ãããŒãžããåŸã«DiTã¢ãã«ãä¿åããããã®ãªãã·ã§ã³ã§ãããããæå®ãããšæšè«ã¯ã¹ããããããŸãã
+
+
\ No newline at end of file
diff --git a/docs/flux_kontext.md b/docs/flux_kontext.md
new file mode 100644
index 0000000000000000000000000000000000000000..e757c0643de33c1d4e1b126700d1ff09e4010ab9
--- /dev/null
+++ b/docs/flux_kontext.md
@@ -0,0 +1,190 @@
+# FLUX.1 Kontext
+
+## Overview / æŠèŠ
+
+This document describes the usage of the [FLUX.1 Kontext](https://github.com/black-forest-labs/flux) \[dev\] architecture within the Musubi Tuner framework. FLUX.1 Kontext is an image generation model that can take a reference image as input.
+
+This feature is experimental.
+
+Latent pre-caching, training, and inference options can be found in the `--help` output. Many options are shared with HunyuanVideo, so refer to the [HunyuanVideo documentation](./hunyuan_video.md) as needed.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã¯ãMusubi Tunerãã¬ãŒã ã¯ãŒã¯å
ã§ã®[FLUX.1 Kontext](https://github.com/black-forest-labs/flux) \[dev\] ã¢ãŒããã¯ãã£ã®äœ¿çšæ³ã«ã€ããŠèª¬æããŠããŸããFLUX.1 Kontextã¯ãåç
§ç»åãã³ã³ããã¹ããšããŠå
¥åã§ããç»åçæã¢ãã«ã§ãã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+äºåãã£ãã·ã³ã°ãåŠç¿ãæšè«ã®ãªãã·ã§ã³ã¯`--help`ã§ç¢ºèªããŠãã ãããHunyuanVideoãšå
±éã®ãªãã·ã§ã³ãå€ããããŸãã®ã§ãå¿
èŠã«å¿ããŠ[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md)ãåç
§ããŠãã ããã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+You need to download the DiT, AE, Text Encoder 1 (T5-XXL), and Text Encoder 2 (CLIP-L) models.
+
+- **DiT, AE**: Download from the [black-forest-labs/FLUX.1-kontext](https://huggingface.co/black-forest-labs/FLUX.1-Kontext-dev) repository. Use `flux1-kontext-dev.safetensors` and `ae.safetensors`. The weights in the subfolder are in Diffusers format and cannot be used.
+- **Text Encoder 1 (T5-XXL), Text Encoder 2 (CLIP-L)**: Download from the [ComfyUI FLUX Text Encoders](https://huggingface.co/comfyanonymous/flux_text_encoders) repository. Please use `t5xxl_fp16.safetensors` for T5-XXL. Thanks to ComfyUI for providing these models.
+
+
+æ¥æ¬èª
+
+DiT, AE, Text Encoder 1 (T5-XXL), Text Encoder 2 (CLIP-L) ã®ã¢ãã«ãããŠã³ããŒãããå¿
èŠããããŸãã
+
+- **DiT, AE**: [black-forest-labs/FLUX.1-kontext](https://huggingface.co/black-forest-labs/FLUX.1-Kontext-dev) ãªããžããªããããŠã³ããŒãããŠãã ããã`flux1-kontext-dev.safetensors` ããã³ `ae.safetensors` ã䜿çšããŠãã ããããµããã©ã«ãå
ã®éã¿ã¯Diffusers圢åŒãªã®ã§äœ¿çšã§ããŸããã
+- **Text Encoder 1 (T5-XXL), Text Encoder 2 (CLIP-L)**: [ComfyUIã®FLUX Text Encoders](https://huggingface.co/comfyanonymous/flux_text_encoders) ãªããžããªããããŠã³ããŒãããŠãã ãããT5-XXLã«ã¯`t5xxl_fp16.safetensors`ã䜿çšããŠãã ããããããã®ã¢ãã«ããæäŸããã ããComfyUIã«æè¬ããŸãã
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching uses a dedicated script for FLUX.1 Kontext.
+
+```bash
+python src/musubi_tuner/flux_kontext_cache_latents.py \
+ --dataset_config path/to/toml \
+ --vae path/to/ae_model
+```
+
+- Note that the `--vae` argument is required, not `--ae`.
+- Uses `flux_kontext_cache_latents.py`.
+- The dataset must be an image dataset.
+- The `control_images` in the dataset config is used as the reference image. See [Dataset Config](./dataset_config.md#flux1-kontext-dev) for details.
+
+
+æ¥æ¬èª
+
+latentã®äºåãã£ãã·ã³ã°ã¯FLUX.1 Kontextå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `flux_kontext_cache_latents.py`ã䜿çšããŸãã
+- `--ae`ã§ã¯ãªãã`--vae`åŒæ°ãæå®ããŠãã ããã
+- ããŒã¿ã»ããã¯ç»åããŒã¿ã»ããã§ããå¿
èŠããããŸãã
+- ããŒã¿ã»ããèšå®ã®`control_images`ãåç
§ç»åãšããŠäœ¿çšãããŸãã詳现ã¯[ããŒã¿ã»ããèšå®](./dataset_config.md#flux1-kontext-dev)ãåç
§ããŠãã ããã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text encoder output pre-caching also uses a dedicated script.
+
+```bash
+python src/musubi_tuner/flux_kontext_cache_text_encoder_outputs.py \
+ --dataset_config path/to/toml \
+ --text_encoder1 path/to/text_encoder1 \
+ --text_encoder2 path/to/text_encoder2 \
+ --batch_size 16
+```
+
+- Uses `flux_kontext_cache_text_encoder_outputs.py`.
+- Requires both `--text_encoder1` (T5) and `--text_encoder2` (CLIP) arguments.
+- Use `--fp8_t5` option to run the T5 Text Encoder in fp8 mode for VRAM savings.
+- The larger the batch size, the more VRAM is required. Adjust `--batch_size` according to your VRAM capacity.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°ãå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `flux_kontext_cache_text_encoder_outputs.py`ã䜿çšããŸãã
+- T5ãšCLIPã®äž¡æ¹ã®åŒæ°ãå¿
èŠã§ãã
+- T5ããã¹ããšã³ã³ãŒããŒãfp8ã¢ãŒãã§å®è¡ããããã®`--fp8_t5`ãªãã·ã§ã³ã䜿çšããŸãã
+- ããããµã€ãºã倧ããã»ã©ãããå€ãã®VRAMãå¿
èŠã§ããVRAM容éã«å¿ããŠ`--batch_size`ã調æŽããŠãã ããã
+
+
+
+## Training / åŠç¿
+
+Training uses a dedicated script `flux_kontext_train_network.py`.
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/flux_kontext_train_network.py \
+ --dit path/to/dit_model \
+ --vae path/to/ae_model \
+ --text_encoder1 path/to/text_encoder1 \
+ --text_encoder2 path/to/text_encoder2 \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 \
+ --timestep_sampling flux_shift --weighting_scheme none \
+ --optimizer_type adamw8bit --learning_rate 1e-4 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_flux --network_dim 32 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+- Uses `flux_kontext_train_network.py`.
+- **Requires** specifying `--vae` (not `--ae`), `--text_encoder1`, and `--text_encoder2`.
+- **Requires** specifying `--network_module networks.lora_flux`.
+- `--mixed_precision bf16` is recommended for FLUX.1 Kontext training.
+- `--timestep_sampling flux_shift` is recommended for FLUX.1 Kontext.
+- Memory saving options like `--fp8` (for DiT) and `--fp8_t5` (for Text Encoder 1) are available. `--fp8_scaled` is recommended when using `--fp8` for DiT.
+- `--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+
+
+æ¥æ¬èª
+
+FLUX.1 Kontextã®åŠç¿ã¯å°çšã®ã¹ã¯ãªãã`flux_kontext_train_network.py`ã䜿çšããŸãã
+
+- `flux_kontext_train_network.py`ã䜿çšããŸãã
+- `--ae`ã`--text_encoder1`ã`--text_encoder2`ãæå®ããå¿
èŠããããŸãã
+- `--network_module networks.lora_flux`ãæå®ããå¿
èŠããããŸãã
+- FLUX.1 Kontextã®åŠç¿ã«ã¯`--mixed_precision bf16`ãæšå¥šããŸãã
+- FLUX.1 Kontextã«ã¯`--timestep_sampling flux_shift`ãæšå¥šããŸãã
+- `--fp8`ïŒDiTçšïŒã`--fp8_t5`ïŒããã¹ããšã³ã³ãŒããŒ1çšïŒãªã©ã®ã¡ã¢ãªç¯çŽãªãã·ã§ã³ãå©çšå¯èœã§ãã`--fp8_scaled`ã䜿çšããããšããå§ãããŸãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãå©çšå¯èœã§ãã
+
+
+
+## Inference / æšè«
+
+Inference uses a dedicated script `flux_kontext_generate_image.py`.
+
+```bash
+python src/musubi_tuner/flux_kontext_generate_image.py \
+ --dit path/to/dit_model \
+ --vae path/to/ae_model \
+ --text_encoder1 path/to/text_encoder1 \
+ --text_encoder2 path/to/text_encoder2 \
+ --control_image_path path/to/control_image.jpg \
+ --prompt "A cat" \
+ --image_size 1024 1024 --infer_steps 25 \
+ --attn_mode sdpa --fp8_scaled \
+ --save_path path/to/save/dir --output_type images \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+- Uses `flux_kontext_generate_image.py`.
+- **Requires** specifying `--vae`, `--text_encoder1`, and `--text_encoder2`.
+- **Requires** specifying `--control_image_path` for the reference image.
+- `--no_resize_control`: By default, the control image is resized to the recommended resolution for FLUX.1 Kontext. If you specify this option, this resizing is skipped, and the image is used as-is.
+
+ This feature is not officially supported by FLUX.1 Kontext, but it is available for experimental use.
+
+- `--image_size` is the size of the generated image, height and width are specified in that order.
+- `--prompt`: Prompt for generation.
+- `--fp8_scaled` option is available for DiT to reduce memory usage. Quality may be slightly lower. `--fp8_t5` option is available to reduce memory usage of Text Encoder 1. `--fp8` alone is also an option for DiT but `--fp8_scaled` potentially offers better quality.
+- LoRA loading options (`--lora_weight`, `--lora_multiplier`, `--include_patterns`, `--exclude_patterns`) are available. `--lycoris` is also supported.
+- `--embedded_cfg_scale` (default 2.5) controls the distilled guidance scale.
+- `--save_merged_model` option is available to save the DiT model after merging LoRA weights. Inference is skipped if this is specified.
+
+
+æ¥æ¬èª
+
+FLUX.1 Kontextã®æšè«ã¯å°çšã®ã¹ã¯ãªãã`flux_kontext_generate_image.py`ã䜿çšããŸãã
+
+- `flux_kontext_generate_image.py`ã䜿çšããŸãã
+- `--vae`ã`--text_encoder1`ã`--text_encoder2`ãæå®ããå¿
èŠããããŸãã
+- `--control_image_path`ãæå®ããå¿
èŠããããŸãïŒåç
§ç»åïŒã
+- `--no_resize_control`: ããã©ã«ãã§ã¯ãåç
§ç»åã¯FLUX.1 Kontextã®æšå¥šè§£å床ã«ãªãµã€ãºãããŸãããã®ãªãã·ã§ã³ãæå®ãããšããã®ãªãµã€ãºã¯ã¹ããããããç»åã¯ãã®ãŸãŸã®ãµã€ãºã§äœ¿çšãããŸãã
+
+ ãã®æ©èœã¯FLUX.1 Kontextã§ã¯å
¬åŒã«ãµããŒããããŠããŸããããå®éšçã«äœ¿çšå¯èœã§ãã
+
+- `--image_size`ã¯çæããç»åã®ãµã€ãºã§ãé«ããšå¹
ããã®é çªã§æå®ããŸãã
+- `--prompt`: çæçšã®ããã³ããã§ãã
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ããå質ã¯ããäœäžããå¯èœæ§ããããŸãããŸãText Encoder 1ã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_t5`ãªãã·ã§ã³ãæå®å¯èœã§ããDiTçšã«`--fp8`åç¬ã®ãªãã·ã§ã³ãçšæãããŠããŸããã`--fp8_scaled`ã®æ¹ãå質ãè¯ãå¯èœæ§ããããŸãã
+- LoRAã®èªã¿èŸŒã¿ãªãã·ã§ã³ïŒ`--lora_weight`ã`--lora_multiplier`ã`--include_patterns`ã`--exclude_patterns`ïŒãå©çšå¯èœã§ããLyCORISããµããŒããããŠããŸãã
+- `--embedded_cfg_scale`ïŒããã©ã«ã2.5ïŒã¯ãèžçãããã¬ã€ãã³ã¹ã¹ã±ãŒã«ãå¶åŸ¡ããŸãã
+- `--save_merged_model`ãªãã·ã§ã³ã¯ãLoRAã®éã¿ãããŒãžããåŸã«DiTã¢ãã«ãä¿åããããã®ãªãã·ã§ã³ã§ãããããæå®ãããšæšè«ã¯ã¹ããããããŸãã
+
+
\ No newline at end of file
diff --git a/docs/framepack.md b/docs/framepack.md
new file mode 100644
index 0000000000000000000000000000000000000000..e8e79c4ea813662dfa39909143806cf6aca53d21
--- /dev/null
+++ b/docs/framepack.md
@@ -0,0 +1,618 @@
+# FramePack
+
+## Overview / æŠèŠ
+
+This document describes the usage of the [FramePack](https://github.com/lllyasviel/FramePack) architecture within the Musubi Tuner framework. FramePack is a novel video generation architecture developed by lllyasviel.
+
+Key differences from HunyuanVideo:
+- FramePack only supports Image-to-Video (I2V) generation. Text-to-Video (T2V) is not supported.
+- It utilizes a different DiT model architecture and requires an additional Image Encoder. VAE is same as HunyuanVideo. Text Encoders seem to be the same as HunyuanVideo but we employ the original FramePack method to utilize them.
+- Caching and training scripts are specific to FramePack (`fpack_*.py`).
+- Due to its progressive generation nature, VRAM usage can be significantly lower, especially for longer videos, compared to other architectures.
+
+The official documentation does not provide detailed explanations on how to train the model, but it is based on the FramePack implementation and paper.
+
+This feature is experimental.
+
+For one-frame inference and training, see [here](./framepack_1f.md).
+
+Latent pre-caching, training, and inference options can be found in the `--help` output. Many options are shared with HunyuanVideo, so refer to the [HunyuanVideo documentation](./hunyuan_video.md) as needed.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã¯ãMusubi Tunerãã¬ãŒã ã¯ãŒã¯å
ã§ã®[FramePack](https://github.com/lllyasviel/FramePack) ã¢ãŒããã¯ãã£ã®äœ¿çšæ³ã«ã€ããŠèª¬æããŠããŸããFramePackã¯ãlllyasvielæ°ã«ã«ãã£ãŠéçºãããæ°ãããããªçæã¢ãŒããã¯ãã£ã§ãã
+
+HunyuanVideoãšã®äž»ãªéãã¯æ¬¡ã®ãšããã§ãã
+- FramePackã¯ãç»åãããããªïŒI2VïŒçæã®ã¿ããµããŒãããŠããŸããããã¹ããããããªïŒT2VïŒã¯ãµããŒããããŠããŸããã
+- ç°ãªãDiTã¢ãã«ã¢ãŒããã¯ãã£ã䜿çšãã远å ã®ç»åãšã³ã³ãŒããŒãå¿
èŠã§ããVAEã¯HunyuanVideoãšåãã§ããããã¹ããšã³ã³ãŒããŒã¯HunyuanVideoãšåããšæãããŸãããFramePackå
¬åŒãšåãæ¹æ³ã§æšè«ãè¡ã£ãŠããŸãã
+- ãã£ãã·ã³ã°ãšåŠç¿ã¹ã¯ãªããã¯FramePackå°çšïŒ`fpack_*.py`ïŒã§ãã
+- ã»ã¯ã·ã§ã³ãã€çæãããããä»ã®ã¢ãŒããã¯ãã£ãšæ¯èŒããŠãç¹ã«é·ããããªã®å ŽåãVRAM䜿çšéã倧å¹
ã«å°ãªããªãå¯èœæ§ããããŸãã
+
+åŠç¿æ¹æ³ã«ã€ããŠå
¬åŒããã¯è©³çްãªèª¬æã¯ãããŸããããFramePackã®å®è£
ãšè«æãåèã«ããŠããŸãã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+1ãã¬ãŒã æšè«ãåŠç¿ã«ã€ããŠã¯[ãã¡ã](./framepack_1f.md)ãåç
§ããŠãã ããã
+
+äºåãã£ãã·ã³ã°ãåŠç¿ãæšè«ã®ãªãã·ã§ã³ã¯`--help`ã§ç¢ºèªããŠãã ãããHunyuanVideoãšå
±éã®ãªãã·ã§ã³ãå€ããããŸãã®ã§ãå¿
èŠã«å¿ããŠ[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md)ãåç
§ããŠãã ããã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+You need to download the DiT, VAE, Text Encoder 1 (LLaMA), Text Encoder 2 (CLIP), and Image Encoder (SigLIP) models specifically for FramePack. Several download options are available for each component.
+
+***Note:** The weights are publicly available on the following page: [maybleMyers/framepack_h1111](https://huggingface.co/maybleMyers/framepack_h1111) (except for FramePack-F1). Thank you maybleMyers!
+
+### DiT Model
+
+Choose one of the following methods:
+
+1. **From lllyasviel's Hugging Face repo:** Download the three `.safetensors` files (starting with `diffusion_pytorch_model-00001-of-00003.safetensors`) from [lllyasviel/FramePackI2V_HY](https://huggingface.co/lllyasviel/FramePackI2V_HY). Specify the path to the first file (`...-00001-of-00003.safetensors`) as the `--dit` argument. For FramePack-F1, download from [lllyasviel/FramePack_F1_I2V_HY_20250503](https://huggingface.co/lllyasviel/FramePack_F1_I2V_HY_20250503).
+
+2. **From local FramePack installation:** If you have cloned and run the official FramePack repository, the model might be downloaded locally. Specify the path to the snapshot directory, e.g., `path/to/FramePack/hf_download/hub/models--lllyasviel--FramePackI2V_HY/snapshots/`. FramePack-F1 is also available in the same way.
+
+3. **From Kijai's Hugging Face repo:** Download the single file `FramePackI2V_HY_bf16.safetensors` from [Kijai/HunyuanVideo_comfy](https://huggingface.co/Kijai/HunyuanVideo_comfy/blob/main/FramePackI2V_HY_bf16.safetensors). Specify the path to this file as the `--dit` argument. No FramePack-F1 model is available here currently.
+
+### VAE Model
+
+Choose one of the following methods:
+
+1. **Use official HunyuanVideo VAE:** Follow the instructions in the main [README.md](../README.md#model-download).
+2. **From hunyuanvideo-community Hugging Face repo:** Download `vae/diffusion_pytorch_model.safetensors` from [hunyuanvideo-community/HunyuanVideo](https://huggingface.co/hunyuanvideo-community/HunyuanVideo).
+3. **From local FramePack installation:** If you have cloned and run the official FramePack repository, the VAE might be downloaded locally within the HunyuanVideo community model snapshot. Specify the path to the snapshot directory, e.g., `path/to/FramePack/hf_download/hub/models--hunyuanvideo-community--HunyuanVideo/snapshots/`.
+
+### Text Encoder 1 (LLaMA) Model
+
+Choose one of the following methods:
+
+1. **From Comfy-Org Hugging Face repo:** Download `split_files/text_encoders/llava_llama3_fp16.safetensors` from [Comfy-Org/HunyuanVideo_repackaged](https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged).
+2. **From hunyuanvideo-community Hugging Face repo:** Download the four `.safetensors` files (starting with `text_encoder/model-00001-of-00004.safetensors`) from [hunyuanvideo-community/HunyuanVideo](https://huggingface.co/hunyuanvideo-community/HunyuanVideo). Specify the path to the first file (`...-00001-of-00004.safetensors`) as the `--text_encoder1` argument.
+3. **From local FramePack installation:** (Same as VAE) Specify the path to the HunyuanVideo community model snapshot directory, e.g., `path/to/FramePack/hf_download/hub/models--hunyuanvideo-community--HunyuanVideo/snapshots/`.
+
+### Text Encoder 2 (CLIP) Model
+
+Choose one of the following methods:
+
+1. **From Comfy-Org Hugging Face repo:** Download `split_files/text_encoders/clip_l.safetensors` from [Comfy-Org/HunyuanVideo_repackaged](https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged).
+2. **From hunyuanvideo-community Hugging Face repo:** Download `text_encoder_2/model.safetensors` from [hunyuanvideo-community/HunyuanVideo](https://huggingface.co/hunyuanvideo-community/HunyuanVideo).
+3. **From local FramePack installation:** (Same as VAE) Specify the path to the HunyuanVideo community model snapshot directory, e.g., `path/to/FramePack/hf_download/hub/models--hunyuanvideo-community--HunyuanVideo/snapshots/`.
+
+### Image Encoder (SigLIP) Model
+
+Choose one of the following methods:
+
+1. **From Comfy-Org Hugging Face repo:** Download `sigclip_vision_patch14_384.safetensors` from [Comfy-Org/sigclip_vision_384](https://huggingface.co/Comfy-Org/sigclip_vision_384).
+2. **From lllyasviel's Hugging Face repo:** Download `image_encoder/model.safetensors` from [lllyasviel/flux_redux_bfl](https://huggingface.co/lllyasviel/flux_redux_bfl).
+3. **From local FramePack installation:** If you have cloned and run the official FramePack repository, the model might be downloaded locally. Specify the path to the snapshot directory, e.g., `path/to/FramePack/hf_download/hub/models--lllyasviel--flux_redux_bfl/snapshots/`.
+
+
+æ¥æ¬èª
+
+â»ä»¥äžã®ããŒãžã«éã¿ãäžæ¬ã§å
¬éãããŠããŸãïŒFramePack-F1ãé€ãïŒãmaybleMyers æ°ã«æè¬ããããŸãã: https://huggingface.co/maybleMyers/framepack_h1111
+
+DiTãVAEãããã¹ããšã³ã³ãŒããŒ1ïŒLLaMAïŒãããã¹ããšã³ã³ãŒããŒ2ïŒCLIPïŒãããã³ç»åãšã³ã³ãŒããŒïŒSigLIPïŒã¢ãã«ã¯è€æ°ã®æ¹æ³ã§ããŠã³ããŒãã§ããŸããè±èªã®èª¬æãåèã«ããŠãããŠã³ããŒãããŠãã ããã
+
+FramePackå
¬åŒã®ãªããžããªãã¯ããŒã³ããŠå®è¡ããå Žåãã¢ãã«ã¯ããŒã«ã«ã«ããŠã³ããŒããããŠããå¯èœæ§ããããŸããã¹ãããã·ã§ãããã£ã¬ã¯ããªãžã®ãã¹ãæå®ããŠãã ãããäŸïŒ`path/to/FramePack/hf_download/hub/models--lllyasviel--flux_redux_bfl/snapshots/`
+
+HunyuanVideoã®æšè«ãComfyUIã§ãã§ã«è¡ã£ãŠããå Žåãããã€ãã®ã¢ãã«ã¯ãã§ã«ããŠã³ããŒããããŠããå¯èœæ§ããããŸãã
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+The default resolution for FramePack is 640x640. See [the source code](../src/musubi_tuner/frame_pack/bucket_tools.py) for the default resolution of each bucket.
+
+The dataset for training must be a video dataset. Image datasets are not supported. You can train on videos of any length. Specify `frame_extraction` as `full` and set `max_frames` to a sufficiently large value. However, if the video is too long, you may run out of VRAM during VAE encoding.
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching uses a dedicated script for FramePack. You **must** provide the Image Encoder model.
+
+```bash
+python src/musubi_tuner/fpack_cache_latents.py \
+ --dataset_config path/to/toml \
+ --vae path/to/vae_model.safetensors \
+ --image_encoder path/to/image_encoder_model.safetensors \
+ --vae_chunk_size 32
+```
+
+Key differences from HunyuanVideo caching:
+- Uses `fpack_cache_latents.py`.
+- Requires the `--image_encoder` argument pointing to the downloaded SigLIP model.
+- The script generates multiple cache files per video, each corresponding to a different section, with the section index appended to the filename (e.g., `..._frame_pos-0000-count_...` becomes `..._frame_pos-0000-0000-count_...`, `..._frame_pos-0000-0001-count_...`, etc.).
+- Image embeddings are calculated using the Image Encoder and stored in the cache files alongside the latents.
+
+For VRAM savings during VAE decoding, consider using `--vae_chunk_size` and `--vae_spatial_tile_sample_min_size`. If VRAM is overflowing and using shared memory, it is recommended to set `--vae_chunk_size` to 16 or 8 to lower Conv3D chunk size. If VRAM is still an issue, consider specifying `--vae_spatial_tile_sample_min_size` to 64 or 32. This option enables tiling during VAE encoding and decoding. `--vae_tiling` option is also available to enable tiling with the default tile size of 32.
+
+Note that the quality may be slightly lower when using tiling. Chunking does not affect quality.
+
+Specifying `--f1` is required for FramePack-F1 training. For one-frame training, specify `--one_frame`. If you change the presence of these options, please overwrite the existing cache without specifying `--skip_existing`.
+
+`--one_frame_no_2x` and `--one_frame_no_4x` options are available for one-frame training, described in the next section.
+
+**FramePack-F1 support:**
+You can apply the FramePack-F1 sampling method by specifying `--f1` during caching. The training script also requires specifying `--f1` to change the options during sample generation.
+
+By default, the sampling method used is Inverted anti-drifting (the same as during inference with the original FramePack model, using the latent and index in reverse order), described in the paper. You can switch to FramePack-F1 sampling (Vanilla sampling, using the temporally ordered latent and index) by specifying `--f1`.
+
+
+æ¥æ¬èª
+
+FramePackã®ããã©ã«ãè§£å床ã¯640x640ã§ããåãã±ããã®ããã©ã«ãè§£å床ã«ã€ããŠã¯ã[ãœãŒã¹ã³ãŒã](../src/musubi_tuner/frame_pack/bucket_tools.py)ãåç
§ããŠãã ããã
+
+ç»åããŒã¿ã»ããã§ã®åŠç¿ã¯è¡ããŸããããŸãåç»ã®é·ãã«ãããåŠç¿å¯èœã§ãã `frame_extraction` ã« `full` ãæå®ããŠã`max_frames` ã«ååã«å€§ããªå€ãæå®ããŠãã ããããã ããããŸãã«ãé·ããšVAEã®encodeã§VRAMãäžè¶³ããå¯èœæ§ããããŸãã
+
+latentã®äºåãã£ãã·ã³ã°ã¯FramePackå°çšã®ã¹ã¯ãªããã䜿çšããŸããç»åãšã³ã³ãŒããŒã¢ãã«ãæå®ããå¿
èŠããããŸãã
+
+HunyuanVideoã®ãã£ãã·ã³ã°ãšã®äž»ãªéãã¯æ¬¡ã®ãšããã§ãã
+- `fpack_cache_latents.py`ã䜿çšããŸãã
+- ããŠã³ããŒãããSigLIPã¢ãã«ãæã`--image_encoder`åŒæ°ãå¿
èŠã§ãã
+- ã¹ã¯ãªããã¯ãåãããªã«å¯ŸããŠè€æ°ã®ãã£ãã·ã¥ãã¡ã€ã«ãçæããŸããåãã¡ã€ã«ã¯ç°ãªãã»ã¯ã·ã§ã³ã«å¯Ÿå¿ããã»ã¯ã·ã§ã³ã€ã³ããã¯ã¹ããã¡ã€ã«åã«è¿œå ãããŸãïŒäŸïŒ`..._frame_pos-0000-count_...`ã¯`..._frame_pos-0000-0000-count_...`ã`..._frame_pos-0000-0001-count_...`ãªã©ã«ãªããŸãïŒã
+- ç»ååã蟌ã¿ã¯ç»åãšã³ã³ãŒããŒã䜿çšããŠèšç®ãããlatentãšãšãã«ãã£ãã·ã¥ãã¡ã€ã«ã«ä¿åãããŸãã
+
+VAEã®decodeæã®VRAMç¯çŽã®ããã«ã`--vae_chunk_size`ãš`--vae_spatial_tile_sample_min_size`ã䜿çšããããšãæ€èšããŠãã ãããVRAMãããµããŠå
±æã¡ã¢ãªã䜿çšããŠããå Žåã«ã¯ã`--vae_chunk_size`ã16ã8ãªã©ã«èšå®ããŠConv3Dãã£ã³ã¯ãæå¹ã«ããããšããå§ãããŸããVRAMããŸã äžè¶³ããå Žåã¯ã`--vae_spatial_tile_sample_min_size`ã64ã32ãªã©ã«æå®ããŠãã ããããã®ãªãã·ã§ã³ã¯VAEã®ãšã³ã³ãŒããšãã³ãŒãæã«ã¿ã€ãªã³ã°ãæå¹ã«ããŸãã`--vae_tiling`ãªãã·ã§ã³ãå©çšå¯èœã§ãããã©ã«ãã®ã¿ã€ã«ãµã€ãº32ã§ã¿ã€ã«åŠçãæå¹ã«ããŸãã
+
+ã¿ã€ãªã³ã°ãæå¹ã«ãããšå質ã¯ãããã«äœäžããå¯èœæ§ããããŸãããã£ã³ã¯åŠçã¯å質ã«åœ±é¿ããŸããã
+
+FramePack-F1ã®åŠç¿ãè¡ãå Žåã¯`--f1`ãæå®ããŠãã ããããããã®ãªãã·ã§ã³ã®æç¡ã倿Žããå Žåã«ã¯ã`--skip_existing`ãæå®ããã«æ¢åã®ãã£ãã·ã¥ãäžæžãããŠãã ããã
+
+**FramePack-F1ã®ãµããŒãïŒ**
+ãã£ãã·ã¥æã®ãªãã·ã§ã³ã«`--f1`ãæå®ããããšã§ãFramePack-F1ã®ãµã³ããªã³ã°æ¹æ³ãé©çšã§ããŸããåŠç¿ã¹ã¯ãªããã«ã€ããŠã`--f1`ãæå®ããŠãµã³ãã«çææã®ãªãã·ã§ã³ã倿Žããå¿
èŠããããŸãã
+
+ããã©ã«ãã§ã¯ãè«æã®ãµã³ããªã³ã°æ¹æ³ Inverted anti-drifting ïŒç¡å°ã®FramePackã®æšè«æãšåããéé ã® latent ãš index ã䜿çšïŒã䜿çšããŸãã`--f1`ãæå®ãããš FramePack-F1 ã® Vanilla sampling ïŒæéé ã® latent ãš index ã䜿çšïŒã«å€æŽã§ããŸãã
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text encoder output pre-caching also uses a dedicated script.
+
+```bash
+python src/musubi_tuner/fpack_cache_text_encoder_outputs.py \
+ --dataset_config path/to/toml \
+ --text_encoder1 path/to/text_encoder1 \
+ --text_encoder2 path/to/text_encoder2 \
+ --batch_size 16
+```
+
+Key differences from HunyuanVideo caching:
+- Uses `fpack_cache_text_encoder_outputs.py`.
+- Requires both `--text_encoder1` (LLaMA) and `--text_encoder2` (CLIP) arguments.
+- Uses `--fp8_llm` option to run the LLaMA Text Encoder 1 in fp8 mode for VRAM savings (similar to `--fp8_t5` in Wan2.1).
+- Saves LLaMA embeddings, attention mask, and CLIP pooler output to the cache file.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°ãå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+HunyuanVideoã®ãã£ãã·ã³ã°ãšã®äž»ãªéãã¯æ¬¡ã®ãšããã§ãã
+- `fpack_cache_text_encoder_outputs.py`ã䜿çšããŸãã
+- LLaMAãšCLIPã®äž¡æ¹ã®åŒæ°ãå¿
èŠã§ãã
+- LLaMAããã¹ããšã³ã³ãŒããŒ1ãfp8ã¢ãŒãã§å®è¡ããããã®`--fp8_llm`ãªãã·ã§ã³ã䜿çšããŸãïŒWan2.1ã®`--fp8_t5`ã«äŒŒãŠããŸãïŒã
+- LLaMAã®åã蟌ã¿ãã¢ãã³ã·ã§ã³ãã¹ã¯ãCLIPã®ããŒã©ãŒåºåããã£ãã·ã¥ãã¡ã€ã«ã«ä¿åããŸãã
+
+
+
+
+## Training / åŠç¿
+
+### Training
+
+Training uses a dedicated script `fpack_train_network.py`. Remember FramePack only supports I2V training.
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/fpack_train_network.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model.safetensors \
+ --text_encoder1 path/to/text_encoder1 \
+ --text_encoder2 path/to/text_encoder2 \
+ --image_encoder path/to/image_encoder_model.safetensors \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 \
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing \
+ --timestep_sampling shift --weighting_scheme none --discrete_flow_shift 3.0 \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_framepack --network_dim 32 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+If you use the command prompt (Windows, not PowerShell), you may need to write them in a single line, or use `^` instead of `\` at the end of each line to continue the command.
+
+The maximum value for `--blocks_to_swap` is 36. The default resolution for FramePack is 640x640, which requires around 17GB of VRAM. If you run out of VRAM, consider lowering the dataset resolution.
+
+Key differences from HunyuanVideo training:
+- Uses `fpack_train_network.py`.
+- `--f1` option is available for FramePack-F1 model training. You need to specify the FramePack-F1 model as `--dit`. This option only changes the sample generation during training. The training process itself is the same as the original FramePack model.
+- **Requires** specifying `--vae`, `--text_encoder1`, `--text_encoder2`, and `--image_encoder`.
+- **Requires** specifying `--network_module networks.lora_framepack`.
+- Optional `--latent_window_size` argument (default 9, should match caching).
+- Memory saving options like `--fp8` (for DiT) and `--fp8_llm` (for Text Encoder 1) are available. `--fp8_scaled` is recommended when using `--fp8` for DiT.
+- `--vae_chunk_size` and `--vae_spatial_tile_sample_min_size` options are available for the VAE to prevent out-of-memory during sampling (similar to caching).
+- `--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+- If you encounter an error when the batch size is greater than 1 (especially when specifying `--sdpa` or `--xformers`, it will always result in an error), please specify `--split_attn`.
+
+
+Training settings (learning rate, optimizers, etc.) are experimental. Feedback is welcome.
+
+
+æ¥æ¬èª
+
+FramePackã®åŠç¿ã¯å°çšã®ã¹ã¯ãªãã`fpack_train_network.py`ã䜿çšããŸããFramePackã¯I2VåŠç¿ã®ã¿ããµããŒãããŠããŸãã
+
+ã³ãã³ãèšè¿°äŸã¯è±èªçãåèã«ããŠãã ãããWindowsã§PowerShellã§ã¯ãªãã³ãã³ãããã³ããã䜿çšããŠããå Žåãã³ãã³ãã1è¡ã§èšè¿°ããããåè¡ã®æ«å°Ÿã«`\`ã®ä»£ããã«`^`ãä»ããŠã³ãã³ããç¶ããå¿
èŠããããŸãã
+
+`--blocks_to_swap`ã®æå€§å€ã¯36ã§ããFramePackã®ããã©ã«ãè§£å床ïŒ640x640ïŒã§ã¯ã17GBçšåºŠã®VRAMãå¿
èŠã§ããVRAM容éãäžè¶³ããå Žåã¯ãããŒã¿ã»ããã®è§£å床ãäžããŠãã ããã
+
+HunyuanVideoã®åŠç¿ãšã®äž»ãªéãã¯æ¬¡ã®ãšããã§ãã
+- `fpack_train_network.py`ã䜿çšããŸãã
+- FramePack-F1ã¢ãã«ã®åŠç¿æã«ã¯`--f1`ãæå®ããŠãã ããããã®å Žåã`--dit`ã«FramePack-F1ã¢ãã«ãæå®ããå¿
èŠããããŸãããã®ãªãã·ã§ã³ã¯åŠç¿æã®ãµã³ãã«çææã®ã¿ã«åœ±é¿ããåŠç¿ããã»ã¹èªäœã¯å
ã®FramePackã¢ãã«ãšåãã§ãã
+- `--vae`ã`--text_encoder1`ã`--text_encoder2`ã`--image_encoder`ãæå®ããå¿
èŠããããŸãã
+- `--network_module networks.lora_framepack`ãæå®ããå¿
èŠããããŸãã
+- å¿
èŠã«å¿ããŠ`--latent_window_size`åŒæ°ïŒããã©ã«ã9ïŒãæå®ã§ããŸãïŒãã£ãã·ã³ã°æãšäžèŽãããå¿
èŠããããŸãïŒã
+- `--fp8`ïŒDiTçšïŒã`--fp8_llm`ïŒããã¹ããšã³ã³ãŒããŒ1çšïŒãªã©ã®ã¡ã¢ãªç¯çŽãªãã·ã§ã³ãå©çšå¯èœã§ãã`--fp8_scaled`ã䜿çšããããšããå§ãããŸãã
+- ãµã³ãã«çææã«ã¡ã¢ãªäžè¶³ãé²ããããVAEçšã®`--vae_chunk_size`ã`--vae_spatial_tile_sample_min_size`ã`--vae_tiling`ãªãã·ã§ã³ãå©çšå¯èœã§ãïŒãã£ãã·ã³ã°æãšåæ§ïŒã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãå©çšå¯èœã§ãã
+- ããããµã€ãºã1ãã倧ããå Žåã«ãšã©ãŒãåºãæã«ã¯ïŒç¹ã«`--sdpa`ã`--xformers`ãæå®ãããšå¿
ããšã©ãŒã«ãªããŸããïŒã`--split_attn`ãæå®ããŠãã ããã
+
+
+
+## Inference
+
+Inference uses a dedicated script `fpack_generate_video.py`.
+
+```bash
+python src/musubi_tuner/fpack_generate_video.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model.safetensors \
+ --text_encoder1 path/to/text_encoder1 \
+ --text_encoder2 path/to/text_encoder2 \
+ --image_encoder path/to/image_encoder_model.safetensors \
+ --image_path path/to/start_image.jpg \
+ --prompt "A cat walks on the grass, realistic style." \
+ --video_size 512 768 --video_seconds 5 --fps 30 --infer_steps 25 \
+ --attn_mode sdpa --fp8_scaled \
+ --vae_chunk_size 32 \
+ --save_path path/to/save/dir --output_type both \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+
+Key differences from HunyuanVideo inference:
+- Uses `fpack_generate_video.py`.
+- `--f1` option is available for FramePack-F1 model inference (forward generation). You need to specify the FramePack-F1 model as `--dit`.
+- **Requires** specifying `--vae`, `--text_encoder1`, `--text_encoder2`, and `--image_encoder`.
+- **Requires** specifying `--image_path` for the starting frame.
+- **Requires** specifying `--video_seconds` or `--video_sections`. `--video_seconds` specifies the length of the video in seconds, while `--video_sections` specifies the number of sections. If `--video_sections` is specified, `--video_seconds` is ignored.
+- `--video_size` is the size of the generated video, height and width are specified in that order.
+- `--prompt`: Prompt for generation.
+- Optional `--latent_window_size` argument (default 9, should match caching and training).
+- `--fp8_scaled` option is available for DiT to reduce memory usage. Quality may be slightly lower. `--fp8_llm` option is available to reduce memory usage of Text Encoder 1. `--fp8` alone is also an option for DiT but `--fp8_scaled` potentially offers better quality.
+- LoRA loading options (`--lora_weight`, `--lora_multiplier`, `--include_patterns`, `--exclude_patterns`) are available. `--lycoris` is also supported.
+- `--embedded_cfg_scale` (default 10.0) controls the distilled guidance scale.
+- `--guidance_scale` (default 1.0) controls the standard classifier-free guidance scale. **Changing this from 1.0 is generally not recommended for the base FramePack model.**
+- `--guidance_rescale` (default 0.0) is available but typically not needed.
+- `--bulk_decode` option can decode all frames at once, potentially faster but uses more VRAM during decoding. `--vae_chunk_size` option is recommended to prevent out-of-memory errors.
+- `--sample_solver` (default `unipc`) is available but only `unipc` is implemented.
+- `--save_merged_model` option is available to save the DiT model after merging LoRA weights. Inference is skipped if this is specified.
+- `--latent_paddings` option overrides the default padding for each section. Specify it as a comma-separated list of integers, e.g., `--latent_paddings 0,0,0,0`. This option is ignored if `--f1` is specified.
+- `--custom_system_prompt` option overrides the default system prompt for the LLaMA Text Encoder 1. Specify it as a string. See [here](../src/musubi_tunerhunyuan_model/text_encoder.py#L152) for the default system prompt.
+- `--rope_scaling_timestep_threshold` option is the RoPE scaling timestep threshold, default is None (disabled). If set, RoPE scaling is applied only when the timestep exceeds the threshold. Start with around 800 and adjust as needed. This option is intended for one-frame inference and may not be suitable for other cases.
+- `--rope_scaling_factor` option is the RoPE scaling factor, default is 0.5, assuming a resolution of 2x. For 1.5x resolution, around 0.7 is recommended.
+
+Other options like `--video_size`, `--fps`, `--infer_steps`, `--save_path`, `--output_type`, `--seed`, `--attn_mode`, `--blocks_to_swap`, `--vae_chunk_size`, `--vae_spatial_tile_sample_min_size` function similarly to HunyuanVideo/Wan2.1 where applicable. `--vae_tiling` option is also available.
+
+`--output_type` supports `latent_images` in addition to the options available in HunyuanVideo/Wan2.1. This option saves the latent and image files in the specified directory.
+
+The LoRA weights that can be specified in `--lora_weight` are not limited to the FramePack weights trained in this repository. You can also specify the HunyuanVideo LoRA weights from this repository and the HunyuanVideo LoRA weights from diffusion-pipe (automatic detection).
+
+The maximum value for `--blocks_to_swap` is 38.
+
+
+æ¥æ¬èª
+
+FramePackã®æšè«ã¯å°çšã®ã¹ã¯ãªãã`fpack_generate_video.py`ã䜿çšããŸããã³ãã³ãèšè¿°äŸã¯è±èªçãåèã«ããŠãã ããã
+
+HunyuanVideoã®æšè«ãšã®äž»ãªéãã¯æ¬¡ã®ãšããã§ãã
+- `fpack_generate_video.py`ã䜿çšããŸãã
+- `--f1`ãæå®ãããšãFramePack-F1ã¢ãã«ã®æšè«ãè¡ããŸãïŒé æ¹åã§çæïŒã`--dit`ã«FramePack-F1ã¢ãã«ãæå®ããå¿
èŠããããŸãã
+- `--vae`ã`--text_encoder1`ã`--text_encoder2`ã`--image_encoder`ãæå®ããå¿
èŠããããŸãã
+- `--image_path`ãæå®ããå¿
èŠããããŸãïŒéå§ãã¬ãŒã ïŒã
+- `--video_seconds` ãŸã㯠`--video_sections` ãæå®ããå¿
èŠããããŸãã`--video_seconds`ã¯ç§åäœã§ã®ãããªã®é·ããæå®ãã`--video_sections`ã¯ã»ã¯ã·ã§ã³æ°ãæå®ããŸãã`--video_sections`ãæå®ããå Žåã`--video_seconds`ã¯ç¡èŠãããŸãã
+- `--video_size`ã¯çæãããããªã®ãµã€ãºã§ãé«ããšå¹
ããã®é çªã§æå®ããŸãã
+- `--prompt`: çæçšã®ããã³ããã§ãã
+- å¿
èŠã«å¿ããŠ`--latent_window_size`åŒæ°ïŒããã©ã«ã9ïŒãæå®ã§ããŸãïŒãã£ãã·ã³ã°æãåŠç¿æãšäžèŽãããå¿
èŠããããŸãïŒã
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ããå質ã¯ããäœäžããå¯èœæ§ããããŸãããŸãText Encoder 1ã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_llm`ãªãã·ã§ã³ãæå®å¯èœã§ããDiTçšã«`--fp8`åç¬ã®ãªãã·ã§ã³ãçšæãããŠããŸããã`--fp8_scaled`ã®æ¹ãå質ãè¯ãå¯èœæ§ããããŸãã
+- LoRAã®èªã¿èŸŒã¿ãªãã·ã§ã³ïŒ`--lora_weight`ã`--lora_multiplier`ã`--include_patterns`ã`--exclude_patterns`ïŒãå©çšå¯èœã§ããLyCORISããµããŒããããŠããŸãã
+- `--embedded_cfg_scale`ïŒããã©ã«ã10.0ïŒã¯ãèžçãããã¬ã€ãã³ã¹ã¹ã±ãŒã«ãå¶åŸ¡ããŸããéåžžã¯å€æŽããªãã§ãã ããã
+- `--guidance_scale`ïŒããã©ã«ã1.0ïŒã¯ãæšæºã®åé¡åšããªãŒã¬ã€ãã³ã¹ã¹ã±ãŒã«ãå¶åŸ¡ããŸãã**FramePackã¢ãã«ã®ããŒã¹ã¢ãã«ã§ã¯ãéåžž1.0ãã倿Žããªãããšããå§ãããŸãã**
+- `--guidance_rescale`ïŒããã©ã«ã0.0ïŒãå©çšå¯èœã§ãããéåžžã¯å¿
èŠãããŸããã
+- `--bulk_decode`ãªãã·ã§ã³ã¯ããã¹ãŠã®ãã¬ãŒã ãäžåºŠã«ãã³ãŒãã§ãããªãã·ã§ã³ã§ããé«éã§ããããã³ãŒãäžã«VRAMãå€ã䜿çšããŸããVRAMäžè¶³ãšã©ãŒãé²ãããã«ã`--vae_chunk_size`ãªãã·ã§ã³ãæå®ããããšããå§ãããŸãã
+- `--sample_solver`ïŒããã©ã«ã`unipc`ïŒã¯å©çšå¯èœã§ããã`unipc`ã®ã¿ãå®è£
ãããŠããŸãã
+- `--save_merged_model`ãªãã·ã§ã³ã¯ãLoRAã®éã¿ãããŒãžããåŸã«DiTã¢ãã«ãä¿åããããã®ãªãã·ã§ã³ã§ãããããæå®ãããšæšè«ã¯ã¹ããããããŸãã
+- `--latent_paddings`ãªãã·ã§ã³ã¯ãåã»ã¯ã·ã§ã³ã®ããã©ã«ãã®ããã£ã³ã°ãäžæžãããŸããã«ã³ãåºåãã®æŽæ°ãªã¹ããšããŠæå®ããŸããäŸïŒ`--latent_paddings 0,0,0,0`ã`--f1`ãæå®ããå Žåã¯ç¡èŠãããŸãã
+- `--custom_system_prompt`ãªãã·ã§ã³ã¯ãLLaMA Text Encoder 1ã®ããã©ã«ãã®ã·ã¹ãã ããã³ãããäžæžãããŸããæååãšããŠæå®ããŸããããã©ã«ãã®ã·ã¹ãã ããã³ããã¯[ãã¡ã](../src/musubi_tuner/hunyuan_model/text_encoder.py#L152)ãåç
§ããŠãã ããã
+- `--rope_scaling_timestep_threshold`ãªãã·ã§ã³ã¯RoPEã¹ã±ãŒãªã³ã°ã®ã¿ã€ã ã¹ãããéŸå€ã§ãããã©ã«ãã¯NoneïŒç¡å¹ïŒã§ããèšå®ãããšãã¿ã€ã ã¹ããããéŸå€ä»¥äžã®å Žåã«ã®ã¿RoPEã¹ã±ãŒãªã³ã°ãé©çšãããŸãã800çšåºŠããåããŠèª¿æŽããŠãã ããã1ãã¬ãŒã æšè«æã§ã®äœ¿çšãæ³å®ããŠããããã以å€ã®å Žåã¯æ³å®ããŠããŸããã
+- `--rope_scaling_factor`ãªãã·ã§ã³ã¯RoPEã¹ã±ãŒãªã³ã°ä¿æ°ã§ãããã©ã«ãã¯0.5ã§ãè§£å床ã2åã®å Žåãæ³å®ããŠããŸãã1.5åãªã0.7çšåºŠãè¯ãã§ãããã
+
+`--video_size`ã`--fps`ã`--infer_steps`ã`--save_path`ã`--output_type`ã`--seed`ã`--attn_mode`ã`--blocks_to_swap`ã`--vae_chunk_size`ã`--vae_spatial_tile_sample_min_size`ãªã©ã®ä»ã®ãªãã·ã§ã³ã¯ãHunyuanVideo/Wan2.1ãšåæ§ã«æ©èœããŸãããŸã`--vae_tiling`ãªãã·ã§ã³ãå©çšå¯èœã§ãã
+
+`--output_type`ã¯HunyuanVideo/Wan2.1ã§å©çšå¯èœãªãªãã·ã§ã³ã«å ããŠã`latent_images`ããµããŒãããŠããŸãããã®ãªãã·ã§ã³ã¯ãæå®ããããã£ã¬ã¯ããªã«latentãšç»åãã¡ã€ã«ãä¿åããŸãã
+
+`--lora_weight`ã«æå®ã§ããLoRAã®éã¿ã¯ãåœãªããžããªã§åŠç¿ããFramePackã®éã¿ä»¥å€ã«ãåœãªããžããªã®HunyuanVideoã®LoRAãdiffusion-pipeã®HunyuanVideoã®LoRAãæå®å¯èœã§ãïŒèªåå€å®ïŒã
+
+`--blocks_to_swap`ã®æå€§å€ã¯38ã§ãã
+
+
+## Batch and Interactive Modes / ãããã¢ãŒããšã€ã³ã¿ã©ã¯ãã£ãã¢ãŒã
+
+In addition to single video generation, FramePack now supports batch generation from file and interactive prompt input:
+
+### Batch Mode from File / ãã¡ã€ã«ããã®ãããã¢ãŒã
+
+Generate multiple videos from prompts stored in a text file:
+
+```bash
+python src/musubi_tuner/fpack_generate_video.py --from_file prompts.txt
+--dit path/to/dit_model --vae path/to/vae_model.safetensors
+--text_encoder1 path/to/text_encoder1 --text_encoder2 path/to/text_encoder2
+--image_encoder path/to/image_encoder_model.safetensors --save_path output_directory
+```
+
+The prompts file format:
+- One prompt per line
+- Empty lines and lines starting with # are ignored (comments)
+- Each line can include prompt-specific parameters using command-line style format:
+
+```
+A beautiful sunset over mountains --w 832 --h 480 --f 5 --d 42 --s 20 --i path/to/start_image.jpg
+A busy city street at night --w 480 --h 832 --i path/to/another_start.jpg
+```
+
+Supported inline parameters (if omitted, default values from the command line are used):
+- `--w`: Width
+- `--h`: Height
+- `--f`: Video seconds
+- `--d`: Seed
+- `--s`: Inference steps
+- `--g` or `--l`: Guidance scale
+- `--i`: Image path (for start image)
+- `--im`: Image mask path
+- `--n`: Negative prompt
+- `--vs`: Video sections
+- `--ei`: End image path
+- `--ci`: Control image path (explained in one-frame inference documentation)
+- `--cim`: Control image mask path (explained in one-frame inference documentation)
+- `--of`: One frame inference mode options (same as `--one_frame_inference` in the command line), options for one-frame inference
+
+In batch mode, models are loaded once and reused for all prompts, significantly improving overall generation time compared to multiple single runs.
+
+### Interactive Mode / ã€ã³ã¿ã©ã¯ãã£ãã¢ãŒã
+
+Interactive command-line interface for entering prompts:
+
+```bash
+python src/musubi_tuner/fpack_generate_video.py --interactive
+--dit path/to/dit_model --vae path/to/vae_model.safetensors
+--text_encoder1 path/to/text_encoder1 --text_encoder2 path/to/text_encoder2
+--image_encoder path/to/image_encoder_model.safetensors --save_path output_directory
+```
+
+In interactive mode:
+- Enter prompts directly at the command line
+- Use the same inline parameter format as batch mode
+- Use Ctrl+D (or Ctrl+Z on Windows) to exit
+- Models remain loaded between generations for efficiency
+
+
+æ¥æ¬èª
+
+åäžåç»ã®çæã«å ããŠãFramePackã¯çŸåšããã¡ã€ã«ããã®ãããçæãšã€ã³ã¿ã©ã¯ãã£ããªããã³ããå
¥åããµããŒãããŠããŸãã
+
+#### ãã¡ã€ã«ããã®ãããã¢ãŒã
+
+ããã¹ããã¡ã€ã«ã«ä¿åãããããã³ããããè€æ°ã®åç»ãçæããŸãïŒ
+
+```bash
+python src/musubi_tuner/fpack_generate_video.py --from_file prompts.txt
+--dit path/to/dit_model --vae path/to/vae_model.safetensors
+--text_encoder1 path/to/text_encoder1 --text_encoder2 path/to/text_encoder2
+--image_encoder path/to/image_encoder_model.safetensors --save_path output_directory
+```
+
+ããã³ãããã¡ã€ã«ã®åœ¢åŒïŒãµã³ãã«ã¯è±èªããã¥ã¡ã³ããåç
§ïŒïŒ
+- 1è¡ã«1ã€ã®ããã³ãã
+- 空è¡ã#ã§å§ãŸãè¡ã¯ç¡èŠãããŸãïŒã³ã¡ã³ãïŒ
+- åè¡ã«ã¯ã³ãã³ãã©ã€ã³åœ¢åŒã§ããã³ããåºæã®ãã©ã¡ãŒã¿ãå«ããããšãã§ããŸãïŒ
+
+ãµããŒããããŠããã€ã³ã©ã€ã³ãã©ã¡ãŒã¿ïŒçç¥ããå Žåãã³ãã³ãã©ã€ã³ã®ããã©ã«ãå€ã䜿çšãããŸãïŒ
+- `--w`: å¹
+- `--h`: é«ã
+- `--f`: åç»ã®ç§æ°
+- `--d`: ã·ãŒã
+- `--s`: æšè«ã¹ããã
+- `--g` ãŸã㯠`--l`: ã¬ã€ãã³ã¹ã¹ã±ãŒã«
+- `--i`: ç»åãã¹ïŒéå§ç»åçšïŒ
+- `--im`: ç»åãã¹ã¯ãã¹
+- `--n`: ãã¬ãã£ãããã³ãã
+- `--vs`: åç»ã»ã¯ã·ã§ã³æ°
+- `--ei`: çµäºç»åãã¹
+- `--ci`: å¶åŸ¡ç»åãã¹ïŒ1ãã¬ãŒã æšè«ã®ããã¥ã¡ã³ãã§è§£èª¬ïŒ
+- `--cim`: å¶åŸ¡ç»åãã¹ã¯ãã¹ïŒ1ãã¬ãŒã æšè«ã®ããã¥ã¡ã³ãã§è§£èª¬ïŒ
+- `--of`: 1ãã¬ãŒã æšè«ã¢ãŒããªãã·ã§ã³ïŒã³ãã³ãã©ã€ã³ã®`--one_frame_inference`ãšåæ§ã1ãã¬ãŒã æšè«ã®ãªãã·ã§ã³ïŒ
+
+ãããã¢ãŒãã§ã¯ãã¢ãã«ã¯äžåºŠã ãããŒãããããã¹ãŠã®ããã³ããã§åå©çšããããããè€æ°åã®åäžå®è¡ãšæ¯èŒããŠå
šäœçãªçææéã倧å¹
ã«æ¹åãããŸãã
+
+#### ã€ã³ã¿ã©ã¯ãã£ãã¢ãŒã
+
+ããã³ãããå
¥åããããã®ã€ã³ã¿ã©ã¯ãã£ããªã³ãã³ãã©ã€ã³ã€ã³ã¿ãŒãã§ãŒã¹ïŒ
+
+```bash
+python src/musubi_tuner/fpack_generate_video.py --interactive
+--dit path/to/dit_model --vae path/to/vae_model.safetensors
+--text_encoder1 path/to/text_encoder1 --text_encoder2 path/to/text_encoder2
+--image_encoder path/to/image_encoder_model.safetensors --save_path output_directory
+```
+
+ã€ã³ã¿ã©ã¯ãã£ãã¢ãŒãã§ã¯ïŒ
+- ã³ãã³ãã©ã€ã³ã§çŽæ¥ããã³ãããå
¥å
+- ãããã¢ãŒããšåãã€ã³ã©ã€ã³ãã©ã¡ãŒã¿åœ¢åŒã䜿çš
+- çµäºããã«ã¯ Ctrl+D (Windowsã§ã¯ Ctrl+Z) ã䜿çš
+- å¹çã®ãããã¢ãã«ã¯çæéã§èªã¿èŸŒãŸãããŸãŸã«ãªããŸã
+
+
+## Advanced Video Control Features (Experimental) / é«åºŠãªãããªå¶åŸ¡æ©èœïŒå®éšçïŒ
+
+This section describes experimental features added to the `fpack_generate_video.py` script to provide finer control over the generated video content, particularly useful for longer videos or sequences requiring specific transitions or states. These features leverage the Inverted Anti-drifting sampling method inherent to FramePack.
+
+### **1. End Image Guidance (`--end_image_path`)**
+
+* **Functionality:** Guides the generation process to make the final frame(s) of the video resemble a specified target image.
+* **Usage:** `--end_image_path `
+* **Mechanism:** The provided image is encoded using the VAE. This latent representation is used as a target or starting point during the generation of the final video section (which is the first step in Inverted Anti-drifting).
+* **Use Cases:** Defining a clear ending for the video, such as a character striking a specific pose or a product appearing in a close-up.
+
+This option is ignored if `--f1` is specified. The end image is not used in the FramePack-F1 model.
+
+### **2. Section Start Image Guidance (`--image_path` Extended Format)**
+
+* **Functionality:** Guides specific sections within the video to start with a visual state close to a provided image.
+ * You can force the start image by setting `--latent_paddings` to `0,0,0,0` (specify the number of sections as a comma-separated list). If `latent_paddings` is set to 1 or more, the specified image will be used as a reference image (default behavior).
+* **Usage:** `--image_path "SECTION_SPEC:path/to/image.jpg;;;SECTION_SPEC:path/to/another.jpg;;;..."`
+ * `SECTION_SPEC`: Defines the target section(s). Rules:
+ * `0`: The first section of the video (generated last in Inverted Anti-drifting).
+ * `-1`: The last section of the video (generated first).
+ * `N` (non-negative integer): The N-th section (0-indexed).
+ * `-N` (negative integer): The N-th section from the end.
+ * `S-E` (range, e.g., `0-2`): Applies the same image guidance to sections S through E (inclusive).
+ * Use `;;;` as a separator between definitions.
+ * If no image is specified for a section, generation proceeds based on the prompt and preceding (future time) section context.
+* **Mechanism:** When generating a specific section, if a corresponding start image is provided, its VAE latent representation is strongly referenced as the "initial state" for that section. This guides the beginning of the section towards the specified image while attempting to maintain temporal consistency with the subsequent (already generated) section.
+* **Use Cases:** Defining clear starting points for scene changes, specifying character poses or attire at the beginning of certain sections.
+
+### **3. Section-Specific Prompts (`--prompt` Extended Format)**
+
+* **Functionality:** Allows providing different text prompts for different sections of the video, enabling more granular control over the narrative or action flow.
+* **Usage:** `--prompt "SECTION_SPEC:Prompt text for section(s);;;SECTION_SPEC:Another prompt;;;..."`
+ * `SECTION_SPEC`: Uses the same rules as `--image_path`.
+ * Use `;;;` as a separator.
+ * If a prompt for a specific section is not provided, the prompt associated with index `0` (or the closest specified applicable prompt) is typically used. Check behavior if defaults are critical.
+* **Mechanism:** During the generation of each section, the corresponding section-specific prompt is used as the primary textual guidance for the model.
+* **Prompt Content Recommendation** when using `--latent_paddings 0,0,0,0` without `--f1` (original FramePack model):
+ * Recall that FramePack uses Inverted Anti-drifting and references future context.
+ * It is recommended to describe "**the main content or state change that should occur in the current section, *and* the subsequent events or states leading towards the end of the video**" in the prompt for each section.
+ * Including the content of subsequent sections in the current section's prompt helps the model maintain context and overall coherence.
+ * Example: For section 1, the prompt might describe what happens in section 1 *and* briefly summarize section 2 (and beyond).
+ * However, based on observations (e.g., the `latent_paddings` comment), the model's ability to perfectly utilize very long-term context might be limited. Experimentation is key. Describing just the "goal for the current section" might also work. Start by trying the "section and onwards" approach.
+* Use the default prompt when `latent_paddings` is >= 1 or `--latent_paddings` is not specified, or when using `--f1` (FramePack-F1 model).
+* **Use Cases:** Describing evolving storylines, gradual changes in character actions or emotions, step-by-step processes over time.
+
+### **Combined Usage Example** (with `--f1` not specified)
+
+Generating a 3-section video of "A dog runs towards a thrown ball, catches it, and runs back":
+
+```bash
+python src/musubi_tuner/fpack_generate_video.py \
+ --prompt "0:A dog runs towards a thrown ball, catches it, and runs back;;;1:The dog catches the ball and then runs back towards the viewer;;;2:The dog runs back towards the viewer holding the ball" \
+ --image_path "0:./img_start_running.png;;;1:./img_catching.png;;;2:./img_running_back.png" \
+ --end_image_path ./img_returned.png \
+ --save_path ./output \
+ # ... other arguments
+```
+
+* **Generation Order:** Section 2 -> Section 1 -> Section 0
+* **Generating Section 2:**
+ * Prompt: "The dog runs back towards the viewer holding the ball"
+ * Start Image: `./img_running_back.png`
+ * End Image: `./img_returned.png` (Initial target)
+* **Generating Section 1:**
+ * Prompt: "The dog catches the ball and then runs back towards the viewer"
+ * Start Image: `./img_catching.png`
+ * Future Context: Generated Section 2 latent
+* **Generating Section 0:**
+ * Prompt: "A dog runs towards a thrown ball, catches it, and runs back"
+ * Start Image: `./img_start_running.png`
+ * Future Context: Generated Section 1 & 2 latents
+
+### **Important Considerations**
+
+* **Inverted Generation:** Always remember that generation proceeds from the end of the video towards the beginning. Section `-1` (the last section, `2` in the example) is generated first.
+* **Continuity vs. Guidance:** While start image guidance is powerful, drastically different images between sections might lead to unnatural transitions. Balance guidance strength with the need for smooth flow.
+* **Prompt Optimization:** The prompt content recommendation is a starting point. Fine-tune prompts based on observed model behavior and desired output quality.
+
+
+æ¥æ¬èª
+
+### **é«åºŠãªåç»å¶åŸ¡æ©èœïŒå®éšçïŒ**
+
+ãã®ã»ã¯ã·ã§ã³ã§ã¯ã`fpack_generate_video.py` ã¹ã¯ãªããã«è¿œå ãããå®éšçãªæ©èœã«ã€ããŠèª¬æããŸãããããã®æ©èœã¯ãçæãããåç»ã®å
容ããã詳现ã«å¶åŸ¡ããããã®ãã®ã§ãç¹ã«é·ãåç»ãç¹å®ã®é·ç§»ã»ç¶æ
ãå¿
èŠãªã·ãŒã±ã³ã¹ã«åœ¹ç«ã¡ãŸãããããã®æ©èœã¯ãFramePackåºæã®Inverted Anti-driftingãµã³ããªã³ã°æ¹åŒã掻çšããŠããŸãã
+
+#### **1. çµç«¯ç»åã¬ã€ãã³ã¹ (`--end_image_path`)**
+
+* **æ©èœ:** åç»ã®æåŸã®ãã¬ãŒã ïŒçŸ€ïŒãæå®ããã¿ãŒã²ããç»åã«è¿ã¥ããããã«çæãèªå°ããŸãã
+* **æžåŒ:** `--end_image_path <ç»åãã¡ã€ã«ãã¹>`
+* **åäœ:** æå®ãããç»åã¯VAEã§ãšã³ã³ãŒãããããã®æœåšè¡šçŸãåç»ã®æçµã»ã¯ã·ã§ã³ïŒInverted Anti-driftingã§ã¯æåã«çæãããïŒã®çææã®ç®æšãŸãã¯éå§ç¹ãšããŠäœ¿çšãããŸãã
+* **çšé:** ãã£ã©ã¯ã¿ãŒãç¹å®ã®ããŒãºã§çµãããç¹å®ã®ååãã¯ããŒãºã¢ããã§çµãããªã©ãåç»ã®çµæ«ãæç¢ºã«å®çŸ©ããå Žåã
+
+ãã®ãªãã·ã§ã³ã¯ã`--f1`ãæå®ããå Žåã¯ç¡èŠãããŸããFramePack-F1ã¢ãã«ã§ã¯çµç«¯ç»åã¯äœ¿çšãããŸããã
+
+#### **2. ã»ã¯ã·ã§ã³éå§ç»åã¬ã€ãã³ã¹ (`--image_path` æ¡åŒµæžåŒ)**
+
+* **æ©èœ:** åç»å
ã®ç¹å®ã®ã»ã¯ã·ã§ã³ããæå®ãããç»åã«è¿ãèŠèŠç¶æ
ããå§ãŸãããã«èªå°ããŸãã
+ * `--latent_paddings`ã`0,0,0,0`ïŒã«ã³ãåºåãã§ã»ã¯ã·ã§ã³æ°ã ãæå®ïŒã«èšå®ããããšã§ãã»ã¯ã·ã§ã³ã®éå§ç»åã匷å¶ã§ããŸãã`latent_paddings`ã1以äžã®å Žåãæå®ãããç»åã¯åç
§ç»åãšããŠäœ¿çšãããŸãã
+* **æžåŒ:** `--image_path "ã»ã¯ã·ã§ã³æå®å:ç»åãã¹;;;ã»ã¯ã·ã§ã³æå®å:å¥ã®ç»åãã¹;;;..."`
+ * `ã»ã¯ã·ã§ã³æå®å`: 察象ã»ã¯ã·ã§ã³ãå®çŸ©ããŸããã«ãŒã«ïŒ
+ * `0`: åç»ã®æåã®ã»ã¯ã·ã§ã³ïŒInverted Anti-driftingã§ã¯æåŸã«çæïŒã
+ * `-1`: åç»ã®æåŸã®ã»ã¯ã·ã§ã³ïŒæåã«çæïŒã
+ * `N`ïŒéè² æŽæ°ïŒ: Nçªç®ã®ã»ã¯ã·ã§ã³ïŒ0å§ãŸãïŒã
+ * `-N`ïŒè² æŽæ°ïŒ: æåŸããNçªç®ã®ã»ã¯ã·ã§ã³ã
+ * `S-E`ïŒç¯å², äŸ:`0-2`ïŒ: ã»ã¯ã·ã§ã³SããEïŒäž¡ç«¯å«ãïŒã«åãç»åãé©çšã
+ * åºåãæå㯠`;;;` ã§ãã
+ * ã»ã¯ã·ã§ã³ã«ç»åãæå®ãããŠããªãå Žåãããã³ãããšåŸç¶ïŒæªæ¥æå»ïŒã»ã¯ã·ã§ã³ã®ã³ã³ããã¹ãã«åºã¥ããŠçæãããŸãã
+* **åäœ:** ç¹å®ã»ã¯ã·ã§ã³ã®çææã察å¿ããéå§ç»åãæå®ãããŠããã°ããã®VAEæœåšè¡šçŸããã®ã»ã¯ã·ã§ã³ã®ãåæç¶æ
ããšããŠåŒ·ãåç
§ãããŸããããã«ãããåŸç¶ïŒçææžã¿ïŒã»ã¯ã·ã§ã³ãšã®æéçé£ç¶æ§ãç¶æããããšãã€ã€ãã»ã¯ã·ã§ã³ã®å§ãŸããæå®ç»åã«è¿ã¥ããŸãã
+* **çšé:** ã·ãŒã³å€æŽã®èµ·ç¹ãæç¢ºã«ãããç¹å®ã®ã»ã¯ã·ã§ã³éå§æã®ãã£ã©ã¯ã¿ãŒã®ããŒãºãæè£
ãæå®ãããªã©ã
+
+#### **3. ã»ã¯ã·ã§ã³å¥ããã³ãã (`--prompt` æ¡åŒµæžåŒ)**
+
+* **æ©èœ:** åç»ã®ã»ã¯ã·ã§ã³ããšã«ç°ãªãããã¹ãããã³ãããäžããç©èªãã¢ã¯ã·ã§ã³ã®æµãããã现ããæç€ºã§ããŸãã
+* **æžåŒ:** `--prompt "ã»ã¯ã·ã§ã³æå®å:ããã³ããããã¹ã;;;ã»ã¯ã·ã§ã³æå®å:å¥ã®ããã³ãã;;;..."`
+ * `ã»ã¯ã·ã§ã³æå®å`: `--image_path` ãšåãã«ãŒã«ã§ãã
+ * åºåãæå㯠`;;;` ã§ãã
+ * ç¹å®ã»ã¯ã·ã§ã³ã®ããã³ããããªãå Žåãéåžžã¯ã€ã³ããã¯ã¹`0`ã«é¢é£ä»ããããããã³ããïŒãŸãã¯æãè¿ãé©çšå¯èœãªæå®ããã³ããïŒã䜿çšãããŸããããã©ã«ãã®æåãéèŠãªå Žåã¯ç¢ºèªããŠãã ããã
+* **åäœ:** åã»ã¯ã·ã§ã³ã®çææã察å¿ããã»ã¯ã·ã§ã³å¥ããã³ãããã¢ãã«ãžã®äž»èŠãªããã¹ãæç€ºãšããŠäœ¿çšãããŸãã
+* `latent_paddings`ã«`0`ãæå®ããå ŽåïŒéF1ã¢ãã«ïŒã® **ããã³ããå
å®¹ã®æšå¥š:**
+ * FramePackã¯Inverted Anti-driftingãæ¡çšããæªæ¥ã®ã³ã³ããã¹ããåç
§ããããšãæãåºããŠãã ããã
+ * åã»ã¯ã·ã§ã³ã®ããã³ããã«ã¯ãã**çŸåšã®ã»ã¯ã·ã§ã³ã§èµ·ããã¹ãäž»èŠãªå
容ãç¶æ
å€åã*ããã³*ããã«ç¶ãåç»ã®çµç«¯ãŸã§ã®å
容**ããèšè¿°ããããšãæšå¥šããŸãã
+ * çŸåšã®ã»ã¯ã·ã§ã³ã®ããã³ããã«åŸç¶ã»ã¯ã·ã§ã³ã®å
容ãå«ããããšã§ãã¢ãã«ãå
šäœçãªæèãææ¡ããäžè²«æ§ãä¿ã€ã®ã«åœ¹ç«ã¡ãŸãã
+ * äŸïŒã»ã¯ã·ã§ã³1ã®ããã³ããã«ã¯ãã»ã¯ã·ã§ã³1ã®å
容 *ãš* ã»ã¯ã·ã§ã³2ã®ç°¡åãªèŠçŽãèšè¿°ããŸãã
+ * ãã ããã¢ãã«ã®é·æã³ã³ããã¹ãå®å
šå©çšèœåã«ã¯éçãããå¯èœæ§ã瀺åãããŠããŸãïŒäŸïŒ`latent_paddings`ã³ã¡ã³ãïŒãå®éšãéµãšãªããŸãããçŸåšã®ã»ã¯ã·ã§ã³ã®ç®æšãã®ã¿ãèšè¿°ããã ãã§ãæ©èœããå ŽåããããŸãããŸãã¯ãã»ã¯ã·ã§ã³ãšä»¥éãã¢ãããŒãã詊ãããšããå§ãããŸãã
+* 䜿çšããããã³ããã¯ã`latent_paddings`ã`1`以äžãŸãã¯æå®ãããŠããªãå ŽåããŸãã¯`--f1`ïŒFramePack-F1ã¢ãã«ïŒã䜿çšããŠããå Žåã¯ãéåžžã®ããã³ããå
容ãèšè¿°ããŠãã ããã
+* **çšé:** æéçµéã«äŒŽãã¹ããŒãªãŒã®å€åããã£ã©ã¯ã¿ãŒã®è¡åãææ
ã®æ®µéçãªå€åãæ®µéçãªããã»ã¹ãªã©ãèšè¿°ããå Žåã
+
+#### **çµã¿åãã䜿çšäŸ** ïŒ`--f1`æªæå®æïŒ
+
+ãæããããããŒã«ã«åãã£ãŠç¬ãèµ°ãããããæãŸããèµ°ã£ãŠæ»ã£ãŠããã3ã»ã¯ã·ã§ã³åç»ã®çæïŒ
+ïŒã³ãã³ãèšè¿°äŸã¯è±èªçãåèã«ããŠãã ããïŒ
+
+* **çæé åº:** ã»ã¯ã·ã§ã³2 â ã»ã¯ã·ã§ã³1 â ã»ã¯ã·ã§ã³0
+* **ã»ã¯ã·ã§ã³2çææ:**
+ * ããã³ãã: "ç¬ãããŒã«ãå¥ããŠãã¡ãã«åãã£ãŠèµ°ã£ãŠãã"
+ * éå§ç»å: `./img_running_back.png`
+ * çµç«¯ç»å: `./img_returned.png` ïŒåæç®æšïŒ
+* **ã»ã¯ã·ã§ã³1çææ:**
+ * ããã³ãã: "ç¬ãããŒã«ãæãŸãããã®åŸãã¡ãã«åãã£ãŠèµ°ã£ãŠãã"
+ * éå§ç»å: `./img_catching.png`
+ * æªæ¥ã³ã³ããã¹ã: çææžã¿ã»ã¯ã·ã§ã³2ã®æœåšè¡šçŸ
+* **ã»ã¯ã·ã§ã³0çææ:**
+ * ããã³ãã: "ç¬ãæããããããŒã«ã«åãã£ãŠèµ°ãããããæãŸããèµ°ã£ãŠæ»ã£ãŠãã"
+ * éå§ç»å: `./img_start_running.png`
+ * æªæ¥ã³ã³ããã¹ã: çææžã¿ã»ã¯ã·ã§ã³1 & 2ã®æœåšè¡šçŸ
+
+#### **éèŠãªèæ
®äºé
**
+
+* **éé çæ:** çæã¯åç»ã®çµããããå§ãŸãã«åãã£ãŠé²ãããšãåžžã«æèããŠãã ãããã»ã¯ã·ã§ã³`-1`ïŒæåŸã®ã»ã¯ã·ã§ã³ãäžã®äŸã§ã¯ `2`ïŒãæåã«çæãããŸãã
+* **é£ç¶æ§ãšã¬ã€ãã³ã¹ã®ãã©ã³ã¹:** éå§ç»åã¬ã€ãã³ã¹ã¯åŒ·åã§ãããã»ã¯ã·ã§ã³éã§ç»åã倧ããç°ãªããšãé·ç§»ãäžèªç¶ã«ãªãå¯èœæ§ããããŸããã¬ã€ãã³ã¹ã®åŒ·ããšã¹ã ãŒãºãªæµãã®å¿
èŠæ§ã®ãã©ã³ã¹ãåã£ãŠãã ããã
+* **ããã³ããã®æé©å:** æšå¥šãããããã³ããå
容ã¯ãããŸã§ãåèã§ããã¢ãã«ã®èгå¯ãããæåãšæãŸããåºåå質ã«åºã¥ããŠããã³ããã埮調æŽããŠãã ããã
+
+
diff --git a/docs/framepack_1f.md b/docs/framepack_1f.md
new file mode 100644
index 0000000000000000000000000000000000000000..0fc6ac8b74268c4879c84fc22c4a55e9adffa689
--- /dev/null
+++ b/docs/framepack_1f.md
@@ -0,0 +1,367 @@
+# FramePack One Frame (Single Frame) Inference and Training / FramePack 1ãã¬ãŒã æšè«ãšåŠç¿
+
+## Overview / æŠèŠ
+
+This document explains advanced inference and training methods using the FramePack model, particularly focusing on **"1-frame inference"** and its extensions. These features aim to leverage FramePack's flexibility to enable diverse image generation and editing tasks beyond simple video generation.
+
+### The Concept and Development of 1-Frame Inference
+
+While FramePack is originally a model for generating sequential video frames (or frame sections), it was discovered that by focusing on its internal structure, particularly how it handles temporal information with RoPE (Rotary Position Embedding), interesting control over single-frame generation is possible.
+
+1. **Basic 1-Frame Inference**:
+ * It takes an initial image and a prompt as input, limiting the number of generated frames to just one.
+ * In this process, by intentionally setting a large RoPE timestamp (`target_index`) for the single frame to be generated, a single static image can be obtained that reflects temporal and semantic changes from the initial image according to the prompt.
+ * This utilizes FramePack's characteristic of being highly sensitive to RoPE timestamps, as it supports bidirectional contexts like "Inverted anti-drifting." This allows for operations similar to natural language-based image editing, albeit in a limited capacity, without requiring additional training.
+
+2. **Kisekaeichi Method (Feature Merging via Post-Reference)**:
+ * This method, an extension of basic 1-frame inference, was **proposed by furusu**. In addition to the initial image, it also uses a reference image corresponding to a "next section-start image" (treated as `clean_latent_post`) as input.
+ * The RoPE timestamp (`target_index`) for the image to be generated is set to an intermediate value between the timestamps of the initial image and the section-end image.
+ * More importantly, masking (e.g., zeroing out specific regions) is applied to the latent representation of each reference image. For example, by setting masks to extract a character's face and body shape from the initial image and clothing textures from the reference image, an image can be generated that fuses the desired features of both, similar to a character "dress-up" or outfit swapping. This method can also be fundamentally achieved without additional training.
+
+3. **1f-mc (one frame multi-control) Method (Proximal Frame Blending)**:
+ * This method was **proposed by mattyamonaca**. It takes two reference images as input: an initial image (e.g., at `t=0`) and a subsequent image (e.g., at `t=1`, the first frame of a section), and generates a single image blending their features.
+ * Unlike Kisekaeichi, latent masking is typically not performed.
+ * To fully leverage this method, additional training using LoRA (Low-Rank Adaptation) is recommended. Through training, the model can better learn the relationship and blending method between the two input images to achieve specific editing effects.
+
+### Integration into a Generalized Control Framework
+
+The concepts utilized in the methods aboveâspecifying reference images, manipulating timestamps, and applying latent masksâhave been generalized to create a more flexible control framework.
+Users can arbitrarily specify the following elements for both inference and LoRA training:
+
+* **Control Images**: Any set of input images intended to influence the model.
+* **Clean Latent Index (Indices)**: Timestamps corresponding to each control image. These are treated as `clean latent index` internally by FramePack and can be set to any position on the time axis. This is specified as `control_index`.
+* **Latent Masks**: Masks applied to the latent representation of each control image, allowing selective control over which features from the control images are utilized. This is specified as `control_image_mask_path` or the alpha channel of the control image.
+* **Target Index**: The timestamp for the single frame to be generated.
+
+This generalized control framework, along with corresponding extensions to the inference and LoRA training tools, has enabled advanced applications such as:
+
+* Development of LoRAs that stabilize 1-frame inference effects (e.g., a camera orbiting effect) that were previously unstable with prompts alone.
+* Development of Kisekaeichi LoRAs that learn to perform desired feature merging under specific conditions (e.g., ignoring character information from a clothing reference image), thereby automating the masking process through learning.
+
+These features maximize FramePack's potential and open up new creative possibilities in static image generation and editing. Subsequent sections will detail the specific options for utilizing these functionalities.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã§ã¯ãFramePackã¢ãã«ãçšããé«åºŠãªæšè«ããã³åŠç¿ææ³ãç¹ã«ã1ãã¬ãŒã æšè«ããšãã®æ¡åŒµæ©èœã«ã€ããŠè§£èª¬ããŸãããããã®æ©èœã¯ãFramePackã®æè»æ§ã掻ãããåç»çæã«çãŸããªã倿§ãªç»åçæã»ç·šéã¿ã¹ã¯ãå®çŸããããšãç®çãšããŠããŸãã
+
+### 1ãã¬ãŒã æšè«ã®çºæ³ãšçºå±
+
+FramePackã¯æ¬æ¥ãé£ç¶ããåç»ãã¬ãŒã ïŒãŸãã¯ãã¬ãŒã ã»ã¯ã·ã§ã³ïŒãçæããã¢ãã«ã§ããããã®å
éšæ§é ãç¹ã«æéæ
å ±ãæ±ãRoPE (Rotary Position Embedding) ã®æ±ãã«çç®ããããšã§ãåäžãã¬ãŒã ã®çæã«ãããŠãè峿·±ãå¶åŸ¡ãå¯èœã«ãªãããšãçºèŠãããŸããã
+
+1. **åºæ¬çãª1ãã¬ãŒã æšè«**:
+ * éå§ç»åãšããã³ãããå
¥åãšããçæãããã¬ãŒã æ°ã1ãã¬ãŒã ã«éå®ããŸãã
+ * ãã®éãçæãã1ãã¬ãŒã ã«å²ãåœãŠãRoPEã®ã¿ã€ã ã¹ã¿ã³ãïŒ`target_index`ïŒãæå³çã«å€§ããªå€ã«èšå®ããããšã§ãéå§ç»åããããã³ããã«åŸã£ãŠæéçã»æå³çã«å€åããåäžã®éæ¢ç»ãåŸãããšãã§ããŸãã
+ * ããã¯ãFramePackãInverted anti-driftingãªã©ã®åæ¹åã³ã³ããã¹ãã«å¯Ÿå¿ãããããRoPEã®ã¿ã€ã ã¹ã¿ã³ãã«å¯ŸããŠææã«åå¿ããç¹æ§ãå©çšãããã®ã§ããããã«ãããåŠç¿ãªãã§éå®çãªããèªç¶èšèªã«ããç»åç·šéã«è¿ãæäœãå¯èœã§ãã
+
+2. **kisekaeichiæ¹åŒ (ãã¹ãåç
§ã«ããç¹åŸŽããŒãž)**:
+ * åºæ¬çãª1ãã¬ãŒã æšè«ãçºå±ããããã®æ¹åŒã¯ã**furusuæ°ã«ããææ¡ãããŸãã**ãéå§ç»åã«å ãããæ¬¡ã®ã»ã¯ã·ã§ã³ã®éå§ç»åãã«çžåœããåç
§ç»åïŒ`clean_latent_post`ãšããŠæ±ãããïŒãå
¥åãšããŠå©çšããŸãã
+ * çæããç»åã®RoPEã¿ã€ã ã¹ã¿ã³ãïŒ`target_index`ïŒããéå§ç»åã®ã¿ã€ã ã¹ã¿ã³ããšã»ã¯ã·ã§ã³çµç«¯ç»åã®ã¿ã€ã ã¹ã¿ã³ãã®äžéçãªå€ã«èšå®ããŸãã
+ * ããã«éèŠãªç¹ãšããŠãååç
§ç»åã®latent衚çŸã«å¯ŸããŠãã¹ã¯åŠçïŒç¹å®é åã0ã§åãããªã©ïŒãæœããŸããäŸãã°ãéå§ç»åããã¯ãã£ã©ã¯ã¿ãŒã®é¡ãäœåããåç
§ç»åããã¯æè£
ã®ãã¯ã¹ãã£ãæœåºããããã«ãã¹ã¯ãèšå®ããããšã§ããã£ã©ã¯ã¿ãŒã®ãçãæ¿ããã®ãããªãäž¡è
ã®æãŸããç¹åŸŽãèåãããç»åãçæã§ããŸãããã®ææ³ãåºæ¬çã«ã¯åŠç¿äžèŠã§å®çŸå¯èœã§ãã
+
+3. **1f-mc (one frame multi-control) æ¹åŒ (è¿æ¥ãã¬ãŒã ãã¬ã³ã)**:
+ * ãã®æ¹åŒã¯ã**mattyamonacaæ°ã«ããææ¡ãããŸãã**ãéå§ç»åïŒäŸ: `t=0`ïŒãšããã®çŽåŸã®ç»åïŒäŸ: `t=1`ãã»ã¯ã·ã§ã³ã®æåã®ãã¬ãŒã ïŒã®2ã€ãåç
§ç»åãšããŠå
¥åãããããã®ç¹åŸŽããã¬ã³ãããåäžç»åãçæããŸãã
+ * kisekaeichiãšã¯ç°ãªããlatentãã¹ã¯ã¯éåžžè¡ããŸããã
+ * ãã®æ¹åŒã®ç䟡ãçºæ®ããã«ã¯ãLoRA (Low-Rank Adaptation) ã«ãã远å åŠç¿ãæšå¥šãããŸããåŠç¿ã«ãããã¢ãã«ã¯2ã€ã®å
¥åç»åéã®é¢ä¿æ§ããã¬ã³ãæ¹æ³ãããé©åã«åŠç¿ããç¹å®ã®ç·šé广ãå®çŸã§ããŸãã
+
+### æ±çšçãªå¶åŸ¡ãã¬ãŒã ã¯ãŒã¯ãžã®çµ±å
+
+äžèšã®åææ³ã§å©çšãããŠãããåç
§ç»åã®æå®ããã¿ã€ã ã¹ã¿ã³ãã®æäœããlatentãã¹ã¯ã®é©çšããšãã£ãæŠå¿µãäžè¬åããããæè»ãªå¶åŸ¡ãå¯èœã«ããããã®æ¡åŒµãè¡ãããŸããã
+ãŠãŒã¶ãŒã¯ä»¥äžã®èŠçŽ ãä»»æã«æå®ããŠãæšè«ããã³LoRAåŠç¿ãè¡ãããšãã§ããŸãã
+
+* **å¶åŸ¡ç»å (Control Images)**: ã¢ãã«ã«åœ±é¿ãäžããããã®ä»»æã®å
¥åç»å矀ã
+* **Clean Latent Index (Indices)**: åå¶åŸ¡ç»åã«å¯Ÿå¿ããã¿ã€ã ã¹ã¿ã³ããFramePackå
éšã®`clean latent index`ãšããŠæ±ãããæé軞äžã®ä»»æã®äœçœ®ãæå®å¯èœã§ãã`control_index`ãšããŠæå®ããŸãã
+* **Latentãã¹ã¯ (Latent Masks)**: åå¶åŸ¡ç»åã®latentã«é©çšãããã¹ã¯ãããã«ãããå¶åŸ¡ç»åããå©çšããç¹åŸŽãéžæçã«å¶åŸ¡ããŸãã`control_image_mask_path`ãŸãã¯å¶åŸ¡ç»åã®ã¢ã«ãã¡ãã£ã³ãã«ãšããŠæå®ããŸãã
+* **Target Index**: çæãããåäžãã¬ãŒã ã®ã¿ã€ã ã¹ã¿ã³ãã
+
+ãã®æ±çšçãªå¶åŸ¡ãã¬ãŒã ã¯ãŒã¯ãšãããã«å¯Ÿå¿ããæšè«ããŒã«ããã³LoRAåŠç¿ããŒã«ã®æ¡åŒµã«ããã以äžã®ãããªé«åºŠãªå¿çšãå¯èœã«ãªããŸããã
+
+* ããã³ããã ãã§ã¯äžå®å®ã ã£ã1ãã¬ãŒã æšè«ã®å¹æïŒäŸ: ã«ã¡ã©æåïŒãå®å®åãããLoRAã®éçºã
+* ãã¹ã¯åŠçãæåã§è¡ã代ããã«ãç¹å®ã®æ¡ä»¶äžïŒäŸ: æã®åç
§ç»åãããã£ã©ã¯ã¿ãŒæ
å ±ãç¡èŠããïŒã§æãŸããç¹åŸŽããŒãžãè¡ãããã«åŠç¿ãããkisekaeichi LoRAã®éçºã
+
+ãããã®æ©èœã¯ãFramePackã®ããã³ã·ã£ã«ãæå€§éã«åŒãåºãã鿢ç»çæã»ç·šéã«ãããæ°ããªåµé ã®å¯èœæ§ãæããã®ã§ãã以éã®ã»ã¯ã·ã§ã³ã§ã¯ããããã®æ©èœãå®éã«å©çšããããã®å
·äœçãªãªãã·ã§ã³ã«ã€ããŠèª¬æããŸãã
+
+
+
+## One Frame (Single Frame) Training / 1ãã¬ãŒã åŠç¿
+
+**This feature is experimental.** It trains in the same way as one frame inference.
+
+The dataset must be an image dataset. If you use caption files, you need to specify `control_directory` and place the **start images** in that directory. The `image_directory` should contain the images after the change. The filenames of both directories must match. Caption files should be placed in the `image_directory`.
+
+If you use JSONL files, specify them as `{"image_path": "/path/to/target_image1.jpg", "control_path": "/path/to/source_image1.jpg", "caption": "The object changes to red."}`. The `image_path` should point to the images after the change, and `control_path` should point to the starting images.
+
+For the dataset configuration, see [here](./dataset_config.md#sample-for-image-dataset-with-control-images) and [here](./dataset_config.md#framepack-one-frame-training). There are also examples for kisekaeichi and 1f-mc settings.
+
+For single frame training, specify `--one_frame` in `fpack_cache_latents.py` to create the cache. You can also use `--one_frame_no_2x` and `--one_frame_no_4x` options, which have the same meaning as `no_2x` and `no_4x` during inference. It is recommended to set these options to match the inference settings.
+
+If you change whether to use one frame training or these options, please overwrite the existing cache without specifying `--skip_existing`.
+
+Specify `--one_frame` in `fpack_train_network.py` to change the inference method during sample generation.
+
+The optimal training settings are currently unknown. Feedback is welcome.
+
+### Example of prompt file description for sample generation
+
+The command line options `--one_frame_inference` corresponds to `--of`, and `--control_image_path` corresponds to `--ci`.
+
+Note that `--ci` can be specified multiple times, but `--control_image_path` is specified as `--control_image_path img1.png img2.png`, while `--ci` is specified as `--ci img1.png --ci img2.png`.
+
+Normal single frame training:
+```
+The girl wears a school uniform. --i path/to/start.png --ci path/to/start.png --of no_2x,no_4x,target_index=1,control_index=0 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+Kisekaeichi training:
+```
+The girl wears a school uniform. --i path/to/start_with_alpha.png --ci path/to/ref_with_alpha.png --ci path/to/start_with_alpha.png --of no_post,no_2x,no_4x,target_index=5,control_index=0;10 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+
+æ¥æ¬èª
+
+**ãã®æ©èœã¯å®éšçãªãã®ã§ãã** 1ãã¬ãŒã æšè«ãšåæ§ã®æ¹æ³ã§åŠç¿ãè¡ããŸãã
+
+ããŒã¿ã»ããã¯ç»åããŒã¿ã»ããã§ããå¿
èŠããããŸãããã£ãã·ã§ã³ãã¡ã€ã«ãçšããå Žåã¯ã`control_directory`ã远å ã§æå®ãããã®ãã£ã¬ã¯ããªã«**éå§ç»å**ãæ ŒçŽããŠãã ããã`image_directory`ã«ã¯å€ååŸã®ç»åãæ ŒçŽããŸããäž¡è
ã®ãã¡ã€ã«åã¯äžèŽãããå¿
èŠããããŸãããã£ãã·ã§ã³ãã¡ã€ã«ã¯`image_directory`ã«æ ŒçŽããŠãã ããã
+
+JSONLãã¡ã€ã«ãçšããå Žåã¯ã`{"image_path": "/path/to/target_image1.jpg", "control_path": "/path/to/source_image1.jpg", "caption": "The object changes to red"}`ã®ããã«æå®ããŠãã ããã`image_path`ã¯å€ååŸã®ç»åã`control_path`ã¯éå§ç»åãæå®ããŸãã
+
+ããŒã¿ã»ããã®èšå®ã«ã€ããŠã¯ã[ãã¡ã](./dataset_config.md#sample-for-image-dataset-with-control-images)ãš[ãã¡ã](./dataset_config.md#framepack-one-frame-training)ãåç
§ããŠãã ãããkisekaeichiãš1f-mcã®èšå®äŸããã¡ãã«ãããŸãã
+
+1ãã¬ãŒã åŠç¿æã¯ã`fpack_cache_latents.py`ã«`--one_frame`ãæå®ããŠãã£ãã·ã¥ãäœæããŠãã ããããŸã`--one_frame_no_2x`ãš`--one_frame_no_4x`ãªãã·ã§ã³ãå©çšå¯èœã§ããæšè«æã®`no_2x`ã`no_4x`ãšåãæå³ãæã¡ãŸãã®ã§ãæšè«æãšåãèšå®ã«ããããšããå§ãããŸãã
+
+1ãã¬ãŒã åŠç¿ãåŠãã倿Žããå ŽåããŸããããã®ãªãã·ã§ã³ã倿Žããå Žåã¯ã`--skip_existing`ãæå®ããã«æ¢åã®ãã£ãã·ã¥ãäžæžãããŠãã ããã
+
+ãŸãã`fpack_train_network.py`ã«`--one_frame`ãæå®ããŠãµã³ãã«ç»åçææã®æšè«æ¹æ³ã倿ŽããŠãã ããã
+
+æé©ãªåŠç¿èšå®ã¯ä»ã®ãšããäžæã§ãããã£ãŒãããã¯ãæè¿ããŸãã
+
+**ãµã³ãã«çæã®ããã³ãããã¡ã€ã«èšè¿°äŸ**
+
+ã³ãã³ãã©ã€ã³ãªãã·ã§ã³`--one_frame_inference`ã«çžåœãã `--of`ãšã`--control_image_path`ã«çžåœãã`--ci`ãçšæãããŠããŸãã
+
+â» `--ci`ã¯è€æ°æå®å¯èœã§ããã`--control_image_path`ã¯`--control_image_path img1.png img2.png`ã®ããã«ã¹ããŒã¹ã§åºåãã®ã«å¯ŸããŠã`--ci`ã¯`--ci img1.png --ci img2.png`ã®ããã«æå®ããã®ã§æ³šæããŠãã ããã
+
+éåžžã®1ãã¬ãŒã åŠç¿:
+```
+The girl wears a school uniform. --i path/to/start.png --ci path/to/start.png --of no_2x,no_4x,target_index=1,control_index=0 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+kisekaeichiæ¹åŒ:
+```
+The girl wears a school uniform. --i path/to/start_with_alpha.png --ci path/to/ref_with_alpha.png --ci path/to/start_with_alpha.png --of no_post,no_2x,no_4x,target_index=5,control_index=0;10 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+
+
+## One (single) Frame Inference / 1ãã¬ãŒã æšè«
+
+**This feature is highly experimental** and not officially supported. It is intended for users who want to explore the potential of FramePack for one frame inference, which is not a standard feature of the model.
+
+This script also allows for one frame inference, which is not an official feature of FramePack but rather a custom implementation.
+
+Theoretically, it generates an image after a specified time from the starting image, following the prompt. This means that, although limited, it allows for natural language-based image editing.
+
+To perform one frame inference, specify some option in the `--one_frame_inference` option. Here is an example:
+
+```bash
+--video_sections 1 --output_type latent_images --one_frame_inference default --image_path start_image.png --control_image_path start_image.png
+```
+
+The `--image_path` is used to obtain the SIGCLIP features for one frame inference. Normally, you should specify the starting image. The `--control_image_path` is newly used to specify the control image, but for normal one frame inference, you should also specify the starting image.
+
+The `--one_frame_inference` option is recommended to be set to `default` or `no_2x,no_4x`. If you specify `--output_type` as `latent_images`, both the latent and image will be saved.
+
+You can specify the following strings in the `--one_frame_inference` option, separated by commas:
+
+- `no_2x`: Generates without passing clean latents 2x with zero vectors to the model. Slightly improves generation speed. The impact on generation results is unknown.
+- `no_4x`: Generates without passing clean latents 4x with zero vectors to the model. Slightly improves generation speed. The impact on generation results is unknown.
+- `no_post`: Generates without passing clean latents post with zero vectors to the model. Improves generation speed by about 20%, but may result in unstable generation.
+- `target_index=`: Specifies the index of the image to be generated. The default is the last frame (i.e., `latent_window_size`).
+
+For example, you can use `--one_frame_inference default` to pass clean latents 2x, clean latents 4x, and post to the model. `--one_frame_inference no_2x,no_4x` if you want to skip passing clean latents 2x and 4x to the model. `--one_frame_inference target_index=9` can be used to specify the target index for the generated image.
+
+The `--one_frame_inference` option also supports advanced inference, which is described in the next section. This option allows for more detailed control using additional parameters like `target_index` and `control_index` within this option.
+
+Normally, specify `--video_sections 1` to indicate only one section (one image).
+
+Increasing `target_index` from the default of 9 may result in larger changes. It has been confirmed that generation can be performed without breaking up to around 40.
+
+The `--one_frame_auto_resize` option has been added to automatically adjust the image size based on the control image size when `--one_frame_inference` is specified. If this option is enabled, the image size will be adjusted to the nearest bucket size with the specified width\*height, based on the control image size while maintaining the aspect ratio. This can be useful when the multiple generation of images with different sizes is required.
+
+The `--end_image_path` is ignored for one frame inference.
+
+
+æ¥æ¬èª
+
+**ãã®æ©èœã¯éåžžã«å®éšçã§ãã**ãå
¬åŒã«ã¯ãµããŒããããŠããŸãããFramePackã䜿çšããŠ1ãã¬ãŒã æšè«ã®å¯èœæ§ã詊ããããŠãŒã¶ãŒã«åãããã®ã§ãã
+
+ãã®ã¹ã¯ãªããã§ã¯ãåäžç»åã®æšè«ãè¡ãããšãã§ããŸããFramePackå
¬åŒã®æ©èœã§ã¯ãªããç¬èªã®å®è£
ã§ãã
+
+çè«çã«ã¯ãéå§ç»åãããããã³ããã«åŸããæå®æéçµéåŸã®ç»åãçæããŸããã€ãŸãå¶éä»ãã§ããèªç¶èšèªã«ããç»åç·šéãè¡ãããšãã§ããŸãã
+
+åäžç»åæšè«ãè¡ãã«ã¯`--one_frame_inference`ãªãã·ã§ã³ã«ãäœããã®ãªãã·ã§ã³ãæå®ããŠãã ãããèšè¿°äŸã¯ä»¥äžã®éãã§ãã
+
+```bash
+--video_sections 1 --output_type latent_images --one_frame_inference default --image_path start_image.png --control_image_path start_image.png
+```
+
+`--image_path`ã¯ã1ãã¬ãŒã æšè«ã§ã¯SIGCLIPã®ç¹åŸŽéãååŸããããã«çšããããŸããéåžžã¯éå§ç»åãæå®ããŠãã ããã`--control_image_path`ã¯æ°ãã远å ãããåŒæ°ã§ãå¶åŸ¡çšç»åãæå®ããããã«çšããããŸãããéåžžã¯éå§ç»åãæå®ããŠãã ããã
+
+`--one_frame_inference`ã®ãªãã·ã§ã³ã¯ã`default`ãŸã㯠`no_2x,no_4x`ãæšå¥šããŸãã`--output_type`ã«`latent_images`ãæå®ãããšlatentãšç»åã®äž¡æ¹ãä¿åãããŸãã
+
+`--one_frame_inference`ã®ãªãã·ã§ã³ã«ã¯ãã«ã³ãåºåãã§ä»¥äžã®ãªãã·ã§ã³ãä»»æåæ°æå®ã§ããŸãã
+
+- `no_2x`: ãŒããã¯ãã«ã® clean latents 2xãã¢ãã«ã«æž¡ããã«çæããŸãããããã«çæé床ãåäžããŸããçæçµæãžã®åœ±é¿ã¯äžæã§ãã
+- `no_4x`: ãŒããã¯ãã«ã® clean latents 4xãã¢ãã«ã«æž¡ããã«çæããŸãããããã«çæé床ãåäžããŸããçæçµæãžã®åœ±é¿ã¯äžæã§ãã
+- `no_post`: ãŒããã¯ãã«ã® clean latents ã® post ãæž¡ããã«çæããŸããçæé床ã20%çšåºŠåäžããŸãããçæçµæãäžå®å®ã«ãªãå ŽåããããŸãã
+- `target_index=<æŽæ°>`: çæããç»åã®indexãæå®ããŸããããã©ã«ãã¯æåŸã®ãã¬ãŒã ã§ãïŒ=latent_window_sizeïŒã
+
+ããšãã°ã`--one_frame_inference default`ã䜿çšãããšãclean latents 2xãclean latents 4xãpostãã¢ãã«ã«æž¡ããŸãã`--one_frame_inference no_2x,no_4x`ã䜿çšãããšãclean latents 2xãš4xãã¢ãã«ã«æž¡ãã®ãã¹ãããããŸãã`--one_frame_inference target_index=9`ã䜿çšããŠãçæããç»åã®ã¿ãŒã²ããã€ã³ããã¯ã¹ãæå®ã§ããŸãã
+
+åŸè¿°ã®é«åºŠãªæšè«ã§ã¯ããã®ãªãã·ã§ã³å
ã§ `target_index`ã`control_index` ãšãã£ã远å ã®ãã©ã¡ãŒã¿ãæå®ããŠããã詳现ãªå¶åŸ¡ãå¯èœã§ãã
+
+clean latents 2xãclean latents 4xãpostãã¢ãã«ã«æž¡ãå Žåã§ãå€ã¯ãŒããã¯ãã«ã§ãããå€ãæž¡ããåŠãã§çµæã¯å€ãããŸããç¹ã«`no_post`ãæå®ãããšã`latent_window_size`ã倧ãããããšãã«çæçµæãäžå®å®ã«ãªãå ŽåããããŸãã
+
+éåžžã¯`--video_sections 1` ãšããŠ1ã»ã¯ã·ã§ã³ã®ã¿ïŒç»å1æïŒãæå®ããŠãã ããã
+
+`target_index` ãããã©ã«ãã®9ãã倧ãããããšãå€åéã倧ãããªãå¯èœæ§ããããŸãã40çšåºŠãŸã§ã¯ç Žç¶»ãªãçæãããããšã確èªããŠããŸãã
+
+`--one_frame_auto_resize`ãªãã·ã§ã³ã远å ãããŸããã`--one_frame_inference`ãæå®ããå Žåã«ãå¶åŸ¡çšç»åã®ãµã€ãºã«åºã¥ããŠèªåçã«ç»åãµã€ãºã調æŽããŸãããã®ãªãã·ã§ã³ãæå¹ã«ãããšãç»åãµã€ãºã¯ãã¢ã¹ãã¯ãæ¯ãç¶æãã€ã€å¶åŸ¡çšç»åã®ãµã€ãºãåºæºã«ãæå®ãããå¹
\*é«ãã®æãè¿ããã±ãããµã€ãºã«èª¿æŽãããŸããç°ãªããµã€ãºã®ç»åãè€æ°çæããå¿
èŠãããå Žåã«äŸ¿å©ã§ãã
+
+`--end_image_path`ã¯ç¡èŠãããŸãã
+
+
+
+## kisekaeichi method (Post Reference Options) and 1f-mc (Multi-Control) / kisekaeichiæ¹åŒïŒãã¹ãåç
§ãªãã·ã§ã³ïŒãš1f-mcïŒãã«ãã³ã³ãããŒã«ïŒ
+
+The `kisekaeichi` method was proposed by furusu. The `1f-mc` method was proposed by mattyamonaca in pull request [#304](https://github.com/kohya-ss/musubi-tuner/pull/304).
+
+In this repository, these methods have been integrated and can be specified with the `--one_frame_inference` option. This allows for specifying any number of control images as clean latents, along with indices. This means you can specify multiple starting images and multiple clean latent posts. Additionally, masks can be applied to each image.
+
+It is expected to work only with FramePack (non-F1 model) and not with F1 models.
+
+The following options have been added to `--one_frame_inference`. These can be used in conjunction with existing flags like `target_index`, `no_post`, `no_2x`, and `no_4x`.
+
+- `control_index=`: Specifies the index(es) of the clean latent for the control image(s). You must specify the same number of indices as the number of control images specified with `--control_image_path`.
+
+Additionally, the following command-line options have been added. These arguments are only valid when `--one_frame_inference` is specified.
+
+- `--control_image_path [ ...]` : Specifies the path(s) to control (reference) image(s) for one frame inference. Provide one or more paths separated by spaces. Images with an alpha channel can be specified. If an alpha channel is present, it is used as a mask for the clean latent.
+- `--control_image_mask_path [ ...]` : Specifies the path(s) to grayscale mask(s) to be applied to the control image(s). Provide one or more paths separated by spaces. Each mask is applied to the corresponding control image. The 255 areas are referenced, while the 0 areas are ignored.
+
+**Example of specifying kisekaeichi:**
+
+The kisekaeichi method works without training, but using a dedicated LoRA may yield better results.
+
+```bash
+--video_sections 1 --output_type latent_images --image_path start_image.png --control_image_path start_image.png clean_latent_post_image.png \
+--one_frame_inference target_index=1,control_index=0;10,no_post,no_2x,no_4x --control_image_mask_path ctrl_mask1.png ctrl_mask2.png
+```
+
+In this example, `start_image.png` (for `clean_latent_pre`) and `clean_latent_post_image.png` (for `clean_latent_post`) are the reference images. The `target_index` specifies the index of the generated image. The `control_index` specifies the clean latent index for each control image, so it will be `0;10`. The masks for the control images are specified with `--control_image_mask_path`.
+
+The optimal values for `target_index` and `control_index` are unknown. The `target_index` should be specified as 1 or higher. The `control_index` should be set to an appropriate value relative to `latent_window_size`. Specifying 1 for `target_index` results in less change from the starting image, but may introduce noise. Specifying 9 or 13 may reduce noise but result in larger changes from the original image.
+
+The `control_index` should be larger than `target_index`. Typically, it is set to `10`, but larger values (e.g., around `13-16`) may also work.
+
+Sample images and command lines for reproduction are as follows:
+
+```bash
+python fpack_generate_video.py --video_size 832 480 --video_sections 1 --infer_steps 25 \
+ --prompt "The girl in a school blazer in a classroom." --save_path path/to/output --output_type latent_images \
+ --dit path/to/dit --vae path/to/vae --text_encoder1 path/to/text_encoder1 --text_encoder2 path/to/text_encoder2 \
+ --image_encoder path/to/image_encoder --attn_mode sdpa --vae_spatial_tile_sample_min_size 128 --vae_chunk_size 32 \
+ --image_path path/to/kisekaeichi_start.png --control_image_path path/to/kisekaeichi_start.png path/to/kisekaeichi_ref.png
+ --one_frame_inference target_index=1,control_index=0;10,no_2x,no_4x,no_post
+ --control_image_mask_path path/to/kisekaeichi_start_mask.png path/to/kisekaeichi_ref_mask.png --seed 1234
+```
+
+Specify `--fp8_scaled` and `--blocks_to_swap` options according to your VRAM capacity.
+
+- [kisekaeichi_start.png](./kisekaeichi_start.png)
+- [kisekaeichi_ref.png](./kisekaeichi_ref.png)
+- [kisekaeichi_start_mask.png](./kisekaeichi_start_mask.png)
+- [kisekaeichi_ref_mask.png](./kisekaeichi_ref_mask.png)
+
+Generation result: [kisekaeichi_result.png](./kisekaeichi_result.png)
+
+
+**Example of 1f-mc (Multi-Control):**
+
+```bash
+--video_sections 1 --output_type latent_images --image_path start_image.png --control_image_path start_image.png 2nd_image.png \
+--one_frame_inference target_index=9,control_index=0;1,no_2x,no_4x
+```
+
+In this example, `start_image.png` is the starting image, and `2nd_image.png` is the reference image. The `target_index=9` specifies the index of the generated image, while `control_index=0;1` specifies the clean latent indices for each control image.
+
+1f-mc is intended to be used in combination with a trained LoRA, so adjust `target_index` and `control_index` according to the LoRA's description.
+
+
+æ¥æ¬èª
+
+`kisekaeichi`æ¹åŒã¯furusuæ°ã«ããææ¡ãããŸããããŸã`1f-mc`æ¹åŒã¯mattyamonacaæ°ã«ããPR [#304](https://github.com/kohya-ss/musubi-tuner/pull/304) ã§ææ¡ãããŸããã
+
+åœãªããžããªã§ã¯ãããã®æ¹åŒãçµ±åãã`--one_frame_inference`ãªãã·ã§ã³ã§æå®ã§ããããã«ããŸãããããã«ãããä»»æã®ææ°ã®å¶åŸ¡çšç»åã clean latentãšããŠæå®ããããã«ã€ã³ããã¯ã¹ãæå®ã§ããŸããã€ãŸãéå§ç»åã®è€æ°ææå®ãclean latent postã®è€æ°ææå®ãªã©ãå¯èœã§ãããŸããããããã®ç»åã«ãã¹ã¯ãé©çšããããšãã§ããŸãã
+
+ãªããFramePackç¡å°ã®ã¿åäœããF1ã¢ãã«ã§ã¯åäœããªããšæãããŸãã
+
+`--one_frame_inference`ã«ä»¥äžã®ãªãã·ã§ã³ã远å ãããŠããŸãã`target_index`ã`no_post`ã`no_2x`ã`no_4x`ãªã©æ¢åã®ãã©ã°ãšäœµçšã§ããŸãã
+
+- `control_index=<æŽæ°ãŸãã¯ã»ãã³ãã³åºåãã®æŽæ°>`: å¶åŸ¡çšç»åã®clean latentã®ã€ã³ããã¯ã¹ãæå®ããŸãã`--control_image_path`ã§æå®ããå¶åŸ¡çšç»åã®æ°ãšåãæ°ã®ã€ã³ããã¯ã¹ãæå®ããŠãã ããã
+
+ãŸãã³ãã³ãã©ã€ã³ãªãã·ã§ã³ã«ä»¥äžã远å ãããŠããŸãããããã®åŒæ°ã¯`--one_frame_inference`ãæå®ããå Žåã®ã¿æå¹ã§ãã
+
+- `--control_image_path <ãã¹1> [<ãã¹2> ...]` : 1ãã¬ãŒã æšè«çšã®å¶åŸ¡çšïŒåç
§ïŒç»åã®ãã¹ã1ã€ä»¥äžãã¹ããŒã¹åºåãã§æå®ããŸããã¢ã«ãã¡ãã£ã³ãã«ãæã€ç»åãæå®å¯èœã§ããã¢ã«ãã¡ãã£ã³ãã«ãããå Žåã¯ãclean latentãžã®ãã¹ã¯ãšããŠå©çšãããŸãã
+- `--control_image_mask_path <ãã¹1> [<ãã¹2> ...]` : å¶åŸ¡çšç»åã«é©çšããã°ã¬ãŒã¹ã±ãŒã«ãã¹ã¯ã®ãã¹ã1ã€ä»¥äžãã¹ããŒã¹åºåãã§æå®ããŸããåãã¹ã¯ã¯å¯Ÿå¿ããå¶åŸ¡çšç»åã«é©çšãããŸãã255ã®éšåãåç
§ãããéšåã0ã®éšåãç¡èŠãããéšåã§ãã
+
+**kisekaeichiã®æå®äŸ**:
+
+kisekaeichiæ¹åŒã¯åŠç¿ãªãã§ãåäœããŸãããå°çšã®LoRAã䜿çšããããšã§ãããè¯ãçµæãåŸãããå¯èœæ§ããããŸãã
+
+```bash
+--video_sections 1 --output_type latent_images --image_path start_image.png --control_image_path start_image.png clean_latent_post_image.png \
+--one_frame_inference target_index=1,control_index=0;10,no_post,no_2x,no_4x --control_image_mask_path ctrl_mask1.png ctrl_mask2.png
+```
+
+`start_image.png`ïŒclean_latent_preã«çžåœïŒãš`clean_latent_post_image.png`ã¯åç
§ç»åïŒclean_latent_postã«çžåœïŒã§ãã`target_index`ã¯çæããç»åã®ã€ã³ããã¯ã¹ãæå®ããŸãã`control_index`ã¯ããããã®å¶åŸ¡çšç»åã®clean latent indexãæå®ããŸãã®ã§ã`0;10` ã«ãªããŸãããŸã`--control_image_mask_path`ã«å¶åŸ¡çšç»åã«é©çšãããã¹ã¯ãæå®ããŸãã
+
+`target_index`ã`control_index`ã®æé©å€ã¯äžæã§ãã`target_index`ã¯1以äžãæå®ããŠãã ããã`control_index`ã¯`latent_window_size`ã«å¯ŸããŠé©åãªå€ãæå®ããŠãã ããã`target_index`ã«1ãæå®ãããšéå§ç»åããã®å€åãå°ãªããªããŸããããã€ãºãä¹ã£ããããããšãå€ãããã§ãã9ã13ãªã©ãæå®ãããšãã€ãºã¯æ¹åããããããããŸããããå
ã®ç»åããã®å€åã倧ãããªããŸãã
+
+`control_index`ã¯`target_index`ãã倧ããå€ãæå®ããŠãã ãããéåžžã¯`10`ã§ããããã以äžå€§ããªå€ãããšãã°`13~16çšåºŠã§ãåäœããããã§ãã
+
+ãµã³ãã«ç»åãšåçŸã®ããã®ã³ãã³ãã©ã€ã³ã¯ä»¥äžã®ããã«ãªããŸãã
+
+```bash
+python fpack_generate_video.py --video_size 832 480 --video_sections 1 --infer_steps 25 \
+ --prompt "The girl in a school blazer in a classroom." --save_path path/to/output --output_type latent_images \
+ --dit path/to/dit --vae path/to/vae --text_encoder1 path/to/text_encoder1 --text_encoder2 path/to/text_encoder2 \
+ --image_encoder path/to/image_encoder --attn_mode sdpa --vae_spatial_tile_sample_min_size 128 --vae_chunk_size 32 \
+ --image_path path/to/kisekaeichi_start.png --control_image_path path/to/kisekaeichi_start.png path/to/kisekaeichi_ref.png
+ --one_frame_inference target_index=1,control_index=0;10,no_2x,no_4x,no_post
+ --control_image_mask_path path/to/kisekaeichi_start_mask.png path/to/kisekaeichi_ref_mask.png --seed 1234
+```
+
+VRAM容éã«å¿ããŠã`--fp8_scaled`ã`--blocks_to_swap`çã®ãªãã·ã§ã³ã調æŽããŠãã ããã
+
+- [kisekaeichi_start.png](./kisekaeichi_start.png)
+- [kisekaeichi_ref.png](./kisekaeichi_ref.png)
+- [kisekaeichi_start_mask.png](./kisekaeichi_start_mask.png)
+- [kisekaeichi_ref_mask.png](./kisekaeichi_ref_mask.png)
+
+çæçµæ:
+- [kisekaeichi_result.png](./kisekaeichi_result.png)
+
+**1f-mcã®æå®äŸ**:
+
+```bash
+--video_sections 1 --output_type latent_images --image_path start_image.png --control_image_path start_image.png 2nd_image.png \
+--one_frame_inference target_index=9,control_index=0;1,no_2x,no_4x
+```
+
+ãã®äŸã§ã¯ã`start_image.png`ãéå§ç»åã§ã`2nd_image.png`ãåç
§ç»åã§ãã`target_index=9`ã¯çæããç»åã®ã€ã³ããã¯ã¹ãæå®ãã`control_index=0;1`ã¯ããããã®å¶åŸ¡çšç»åã®clean latent indexãæå®ããŠããŸãã
+
+1f-mcã¯åŠç¿ããLoRAãšçµã¿åãããããšãæ³å®ããŠããŸãã®ã§ããã®LoRAã®èª¬æã«åŸã£ãŠã`target_index`ã`control_index`ã調æŽããŠãã ããã
+
+
\ No newline at end of file
diff --git a/docs/hunyuan_video.md b/docs/hunyuan_video.md
new file mode 100644
index 0000000000000000000000000000000000000000..7a14f3658314159e48b705a26b662be50a84ad61
--- /dev/null
+++ b/docs/hunyuan_video.md
@@ -0,0 +1,553 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# HunyuanVideo
+
+## Overview / æŠèŠ
+
+This document describes the usage of the [HunyuanVideo](https://github.com/Tencent/HunyuanVideo) architecture within the Musubi Tuner framework. HunyuanVideo is a video generation model that supports text-to-video generation.
+
+This feature is experimental.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã¯ãMusubi Tunerãã¬ãŒã ã¯ãŒã¯å
ã§ã®[HunyuanVideo](https://github.com/Tencent/HunyuanVideo)ã¢ãŒããã¯ãã£ã®äœ¿çšæ³ã«ã€ããŠèª¬æããŠããŸããHunyuanVideoã¯ããã¹ãããåç»ãçæããã¢ãã«ã§ãã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+There are two ways to download the model.
+
+### Use the Official HunyuanVideo Model / å
¬åŒHunyuanVideoã¢ãã«ã䜿ã
+
+Download the model following the [official README](https://github.com/Tencent/HunyuanVideo/blob/main/ckpts/README.md) and place it in your chosen directory with the following structure:
+
+```
+ ckpts
+ âââhunyuan-video-t2v-720p
+ â âââtransformers
+ â âââvae
+ âââtext_encoder
+ âââtext_encoder_2
+ âââ...
+```
+
+### Using ComfyUI Models for Text Encoder / Text Encoderã«ComfyUIæäŸã®ã¢ãã«ã䜿ã
+
+This method is easier.
+
+For DiT and VAE, use the HunyuanVideo models.
+
+From https://huggingface.co/tencent/HunyuanVideo/tree/main/hunyuan-video-t2v-720p/transformers, download [mp_rank_00_model_states.pt](https://huggingface.co/tencent/HunyuanVideo/resolve/main/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt) and place it in your chosen directory.
+
+(Note: The fp8 model on the same page is unverified.)
+
+If you are training with `--fp8_base`, you can use `mp_rank_00_model_states_fp8.safetensors` from [here](https://huggingface.co/kohya-ss/HunyuanVideo-fp8_e4m3fn-unofficial) instead of `mp_rank_00_model_states.pt`. (This file is unofficial and simply converts the weights to float8_e4m3fn.)
+
+From https://huggingface.co/tencent/HunyuanVideo/tree/main/hunyuan-video-t2v-720p/vae, download [pytorch_model.pt](https://huggingface.co/tencent/HunyuanVideo/resolve/main/hunyuan-video-t2v-720p/vae/pytorch_model.pt) and place it in your chosen directory.
+
+For the Text Encoder, use the models provided by ComfyUI. Refer to [ComfyUI's page](https://comfyanonymous.github.io/ComfyUI_examples/hunyuan_video/), from https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged/tree/main/split_files/text_encoders, download `llava_llama3_fp16.safetensors` (Text Encoder 1, LLM) and `clip_l.safetensors` (Text Encoder 2, CLIP) and place them in your chosen directory.
+
+(Note: The fp8 LLM model on the same page is unverified.)
+
+
+æ¥æ¬èª
+
+以äžã®ããããã®æ¹æ³ã§ãã¢ãã«ãããŠã³ããŒãããŠãã ããã
+
+### HunyuanVideoã®å
¬åŒã¢ãã«ã䜿ã
+
+[å
¬åŒã®README](https://github.com/Tencent/HunyuanVideo/blob/main/ckpts/README.md)ãåèã«ããŠã³ããŒãããä»»æã®ãã£ã¬ã¯ããªã«ä»¥äžã®ããã«é
眮ããŸãã
+
+```
+ ckpts
+ âââhunyuan-video-t2v-720p
+ â âââtransformers
+ â âââvae
+ âââtext_encoder
+ âââtext_encoder_2
+ âââ...
+```
+
+### Text Encoderã«ComfyUIæäŸã®ã¢ãã«ã䜿ã
+
+ãã¡ãã®æ¹æ³ã®æ¹ãããç°¡åã§ããDiTãšVAEã®ã¢ãã«ã¯HumyuanVideoã®ãã®ã䜿çšããŸãã
+
+https://huggingface.co/tencent/HunyuanVideo/tree/main/hunyuan-video-t2v-720p/transformers ããã[mp_rank_00_model_states.pt](https://huggingface.co/tencent/HunyuanVideo/resolve/main/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt) ãããŠã³ããŒãããä»»æã®ãã£ã¬ã¯ããªã«é
眮ããŸãã
+
+ïŒåãããŒãžã«fp8ã®ã¢ãã«ããããŸãããæªæ€èšŒã§ããïŒ
+
+`--fp8_base`ãæå®ããŠåŠç¿ããå Žåã¯ã`mp_rank_00_model_states.pt`ã®ä»£ããã«ã[ãã¡ã](https://huggingface.co/kohya-ss/HunyuanVideo-fp8_e4m3fn-unofficial)ã®`mp_rank_00_model_states_fp8.safetensors`ã䜿çšå¯èœã§ããïŒãã®ãã¡ã€ã«ã¯éå
¬åŒã®ãã®ã§ãéã¿ãåçŽã«float8_e4m3fnã«å€æãããã®ã§ããïŒ
+
+ãŸããhttps://huggingface.co/tencent/HunyuanVideo/tree/main/hunyuan-video-t2v-720p/vae ããã[pytorch_model.pt](https://huggingface.co/tencent/HunyuanVideo/resolve/main/hunyuan-video-t2v-720p/vae/pytorch_model.pt) ãããŠã³ããŒãããä»»æã®ãã£ã¬ã¯ããªã«é
眮ããŸãã
+
+Text Encoderã«ã¯ComfyUIæäŸã®ã¢ãã«ã䜿çšãããŠããã ããŸãã[ComyUIã®ããŒãž](https://comfyanonymous.github.io/ComfyUI_examples/hunyuan_video/)ãåèã«ãhttps://huggingface.co/Comfy-Org/HunyuanVideo_repackaged/tree/main/split_files/text_encoders ãããllava_llama3_fp16.safetensors ïŒText Encoder 1ãLLMïŒãšãclip_l.safetensors ïŒText Encoder 2ãCLIPïŒãããŠã³ããŒãããä»»æã®ãã£ã¬ã¯ããªã«é
眮ããŸãã
+
+ïŒåãããŒãžã«fp8ã®LLMã¢ãã«ããããŸãããåäœæªæ€èšŒã§ããïŒ
+
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching is required. Create the cache using the following command:
+
+If you have installed using pip:
+
+```bash
+python src/musubi_tuner/cache_latents.py --dataset_config path/to/toml --vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt --vae_chunk_size 32 --vae_tiling
+```
+
+If you have installed with `uv`, you can use `uv run --extra cu124` to run the script. If CUDA 12.8 or 13.0 is supported, `uv run --extra cu128` or `uv run --extra cu130` is also available. Other scripts can be run in the same way. (Note that the installation with `uv` is experimental. Feedback is welcome. If you encounter any issues, please use the pip-based installation.)
+
+```bash
+uv run --extra cu124 src/musubi_tuner/cache_latents.py --dataset_config path/to/toml --vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt --vae_chunk_size 32 --vae_tiling
+```
+
+For additional options, use `python src/musubi_tuner/cache_latents.py --help`.
+
+If you're running low on VRAM, reduce `--vae_spatial_tile_sample_min_size` to around 128 and lower the `--batch_size` (`--vae_spatial_tile_sample_min_size` may not exist in architectures other than HunyuanVideo, see the documentation for each architecture).
+
+If you are using an AMD GPU and/or are experiencing slow latent caching, consider trying `--disable_cudnn_backend`. For some details, see [this pull request](https://github.com/kohya-ss/musubi-tuner/pull/592).
+
+Use `--debug_mode image` to display dataset images and captions in a new window, or `--debug_mode console` to display them in the console (requires `ascii-magic`).
+
+With `--debug_mode video`, images or videos will be saved in the cache directory (please delete them after checking). The bitrate of the saved video is set to 1Mbps for preview purposes. The images decoded from the original video (not degraded) are used for the cache (for training).
+
+When `--debug_mode` is specified, the actual caching process is not performed.
+
+By default, cache files not included in the dataset are automatically deleted. You can still keep cache files as before by specifying `--keep_cache`.
+
+
+æ¥æ¬èª
+
+latentã®äºåãã£ãã·ã¥ã¯å¿
é ã§ãã以äžã®ã³ãã³ãã䜿çšããŠãäºåãã£ãã·ã¥ãäœæããŠãã ãããïŒpipã«ããã€ã³ã¹ããŒã«ã®å ŽåïŒ
+
+```bash
+python src/musubi_tuner/cache_latents.py --dataset_config path/to/toml --vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt --vae_chunk_size 32 --vae_tiling
+```
+
+uvã§ã€ã³ã¹ããŒã«ããå Žåã¯ã`uv run --extra cu124 python src/musubi_tuner/cache_latents.py ...`ã®ããã«ã`uv run --extra cu124`ãå
é ã«ã€ããŠãã ãããCUDA 12.8ã13.0ã«å¯Ÿå¿ããŠããå Žåã¯ã`uv run --extra cu128`ã`uv run --extra cu130`ãå©çšå¯èœã§ãã以äžã®ã³ãã³ããåæ§ã§ãã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯`python src/musubi_tuner/cache_latents.py --help`ã§ç¢ºèªã§ããŸãã
+
+VRAMãè¶³ããªãå Žåã¯ã`--vae_spatial_tile_sample_min_size`ã128çšåºŠã«æžããã`--batch_size`ãå°ããããŠãã ããã
+
+`--debug_mode image` ãæå®ãããšããŒã¿ã»ããã®ç»åãšãã£ãã·ã§ã³ãæ°èŠãŠã£ã³ããŠã«è¡šç€ºãããŸãã`--debug_mode console`ã§ã³ã³ãœãŒã«ã«è¡šç€ºãããŸãïŒ`ascii-magic`ãå¿
èŠïŒã
+
+`--debug_mode video`ã§ããã£ãã·ã¥ãã£ã¬ã¯ããªã«ç»åãŸãã¯åç»ãä¿åãããŸãïŒç¢ºèªåŸãåé€ããŠãã ããïŒãåç»ã®ãããã¬ãŒãã¯ç¢ºèªçšã«äœãããŠãããŸããå®éã«ã¯å
åç»ã®ç»åãåŠç¿ã«äœ¿çšãããŸãã
+
+`--debug_mode`æå®æã¯ãå®éã®ãã£ãã·ã¥åŠçã¯è¡ãããŸããã
+
+ããã©ã«ãã§ã¯ããŒã¿ã»ããã«å«ãŸããªããã£ãã·ã¥ãã¡ã€ã«ã¯èªåçã«åé€ãããŸãã`--keep_cache`ãæå®ãããšããã£ãã·ã¥ãã¡ã€ã«ãæ®ãããšãã§ããŸãã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text Encoder output pre-caching is required. Create the cache using the following command:
+
+```bash
+python src/musubi_tuner/cache_text_encoder_outputs.py --dataset_config path/to/toml --text_encoder1 path/to/ckpts/text_encoder --text_encoder2 path/to/ckpts/text_encoder_2 --batch_size 16
+```
+
+or for uv:
+
+```bash
+uv run --extra cu124 src/musubi_tuner/cache_text_encoder_outputs.py --dataset_config path/to/toml --text_encoder1 path/to/ckpts/text_encoder --text_encoder2 path/to/ckpts/text_encoder_2 --batch_size 16
+```
+
+For additional options, use `python src/musubi_tuner/cache_text_encoder_outputs.py --help`.
+
+Adjust `--batch_size` according to your available VRAM.
+
+For systems with limited VRAM (less than ~16GB), use `--fp8_llm` to run the LLM in fp8 mode.
+
+By default, cache files not included in the dataset are automatically deleted. You can still keep cache files as before by specifying `--keep_cache`.
+
+
+æ¥æ¬èª
+
+Text Encoderåºåã®äºåãã£ãã·ã¥ã¯å¿
é ã§ãã以äžã®ã³ãã³ãã䜿çšããŠãäºåãã£ãã·ã¥ãäœæããŠãã ããã
+
+```bash
+python src/musubi_tuner/cache_text_encoder_outputs.py --dataset_config path/to/toml --text_encoder1 path/to/ckpts/text_encoder --text_encoder2 path/to/ckpts/text_encoder_2 --batch_size 16
+```
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯`python src/musubi_tuner/cache_text_encoder_outputs.py --help`ã§ç¢ºèªã§ããŸãã
+
+`--batch_size`ã¯VRAMã«åãããŠèª¿æŽããŠãã ããã
+
+VRAMãè¶³ããªãå ŽåïŒ16GBçšåºŠæªæºã®å ŽåïŒã¯ã`--fp8_llm`ãæå®ããŠãfp8ã§LLMãå®è¡ããŠãã ããã
+
+ããã©ã«ãã§ã¯ããŒã¿ã»ããã«å«ãŸããªããã£ãã·ã¥ãã¡ã€ã«ã¯èªåçã«åé€ãããŸãã`--keep_cache`ãæå®ãããšããã£ãã·ã¥ãã¡ã€ã«ãæ®ãããšãã§ããŸãã
+
+
+
+## Training / åŠç¿
+
+Start training using the following command (input as a single line):
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt
+ --dataset_config path/to/toml --sdpa --mixed_precision bf16 --fp8_base
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers
+ --network_module networks.lora --network_dim 32
+ --timestep_sampling shift --discrete_flow_shift 7.0
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+or for uv:
+
+```bash
+uv run --extra cu124 accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt
+ --dataset_config path/to/toml --sdpa --mixed_precision bf16 --fp8_base
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers
+ --network_module networks.lora --network_dim 32
+ --timestep_sampling shift --discrete_flow_shift 7.0
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+If the details of the image are not learned well, try lowering the discrete flow shift to around 3.0.
+
+The training settings are still experimental. Appropriate learning rates, training steps, timestep distribution, loss weighting, etc. are not yet known. Feedback is welcome.
+
+For additional options, use `python src/musubi_tuner/hv_train_network.py --help` (note that many options are unverified).
+
+### Memory Optimization
+
+`--gradient_checkpointing` enables gradient checkpointing to reduce VRAM usage. Gradient checkpointing is a memory-saving technique that trades off computation time for memory usage by recomputing certain intermediate results during the backward pass instead of storing them all in memory. This is particularly useful for training large models such as HunyuanVideo, where VRAM can be a limiting factor. However, it may slow down training. If you have sufficient VRAM, you can disable it.
+
+Specifying `--fp8_base` runs DiT in fp8 mode. Without this flag, mixed precision data type will be used. fp8 can significantly reduce memory consumption but may impact output quality. If `--fp8_base` is not specified, 24GB or more VRAM is recommended. Use `--blocks_to_swap` as needed.
+
+If you're running low on VRAM, use `--blocks_to_swap` to offload some blocks to CPU. Maximum value is 36.
+
+(The idea of block swap is based on the implementation by 2kpr. Thanks again to 2kpr.)
+
+`--use_pinned_memory_for_block_swap` can be used to enable pinned memory for block swapping. This may improve performance when swapping blocks between CPU and GPU. However, it may increase shared VRAM usage on Windows systems. Use this option based on your system configuration (e.g., available system RAM and VRAM). In some environments, not specifying this option may result in faster performance.
+
+`--gradient_checkpointing_cpu_offload` can be used to offload activations to CPU when using gradient checkpointing. This can further reduce VRAM usage, but may slow down training. This option is especially useful when the latent resolution (or video length) is high and VRAM is limited. This option must be used together with `--gradient_checkpointing`. See [PR #537](https://github.com/kohya-ss/musubi-tuner/pull/537) for more details.
+
+### Attention
+
+Use `--sdpa` for PyTorch's scaled dot product attention. Use `--flash_attn` for [FlashAttention](https://github.com/Dao-AILab/flash-attention). Use `--xformers` for xformers, but specify `--split_attn` when using xformers. `--sage_attn` for SageAttention, but SageAttention is not yet supported for training, so it raises a ValueError.
+
+`--split_attn` processes attention in chunks. Speed may be slightly reduced, but VRAM usage is slightly reduced.
+
+### Timestep Sampling
+You can also specify the range of timesteps
+with `--min_timestep` and `--max_timestep`. See [advanced configuration](../advanced_config.md#specify-time-step-range-for-training--åŠç¿æã®ã¿ã€ã ã¹ãããç¯å²ã®æå®) for details.
+
+`--show_timesteps` can be set to `image` (requires `matplotlib`) or `console` to display timestep distribution and loss weighting during training. (When using `flux_shift` and `qwen_shift`, the distribution will be for images with a resolution of 1024x1024.)
+
+### Other Options
+
+The format of LoRA trained is the same as `sd-scripts`.
+
+You can record logs during training. Refer to [Save and view logs in TensorBoard format](../advanced_config.md#save-and-view-logs-in-tensorboard-format--tensorboard圢åŒã®ãã°ã®ä¿åãšåç
§).
+
+For PyTorch Dynamo optimization, refer to [this document](../advanced_config.md#pytorch-dynamo-optimization-for-model-training--ã¢ãã«ã®åŠç¿ã«ãããpytorch-dynamoã®æé©å).
+
+For sample image generation during training, refer to [this document](../sampling_during_training.md). For advanced configuration, refer to [this document](../advanced_config.md).
+
+
+æ¥æ¬èª
+
+以äžã®ã³ãã³ãã䜿çšããŠãåŠç¿ãéå§ããŸãïŒå®éã«ã¯äžè¡ã§å
¥åããŠãã ããïŒã
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt
+ --dataset_config path/to/toml --sdpa --mixed_precision bf16 --fp8_base
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers
+ --network_module networks.lora --network_dim 32
+ --timestep_sampling shift --discrete_flow_shift 7.0
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+ãã£ããŒã«ãçããªãå Žåã¯ãdiscrete flow shiftã3.0çšåºŠã«äžããŠã¿ãŠãã ããã
+
+ãã ãé©åãªåŠç¿çãåŠç¿ã¹ãããæ°ãtimestepsã®ååžãloss weightingãªã©ã®ãã©ã¡ãŒã¿ã¯ã以åãšããŠäžæãªç¹ãæ°å€ããããŸããæ
å ±æäŸããåŸ
ã¡ããŠããŸãã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯`python src/musubi_tuner/hv_train_network.py --help`ã§ç¢ºèªã§ããŸãïŒãã ãå€ãã®ãªãã·ã§ã³ã¯åäœæªç¢ºèªã§ãïŒã
+
+**ã¡ã¢ãªæé©å**
+
+`--gradient_checkpointing`ã§gradient checkpointingãæå¹ã«ããŸããVRAM䜿çšéãåæžã§ããŸããgradient checkpointingã¯ãããã¯ã¯ãŒããã¹äžã«äžéšã®äžéçµæããã¹ãŠã¡ã¢ãªã«ä¿åããã®ã§ã¯ãªããåèšç®ããããšã§ãèšç®æéãšã¡ã¢ãªäœ¿çšéããã¬ãŒããªãããã¡ã¢ãªç¯çŽæè¡ã§ããHunyuanVideoã®ãããªå€§èŠæš¡ã¢ãã«ã®åŠç¿ã§ã¯VRAMãå¶çŽãšãªãããšãå€ããããç¹ã«æçšã§ãããã ãåŠç¿ãé
ããªãå¯èœæ§ããããŸããååãªVRAMãããå Žåã¯ç¡å¹ã«ããŠãæ§ããŸããã
+
+`--fp8_base`ãæå®ãããšãDiTãfp8ã§åŠç¿ãããŸããæªæå®æã¯mixed precisionã®ããŒã¿åã䜿çšãããŸããfp8ã¯å€§ããæ¶è²»ã¡ã¢ãªãåæžã§ããŸãããå質ã¯äœäžããå¯èœæ§ããããŸãã`--fp8_base`ãæå®ããªãå Žåã¯VRAM 24GB以äžãæšå¥šããŸãããŸãå¿
èŠã«å¿ããŠ`--blocks_to_swap`ã䜿çšããŠãã ããã
+
+VRAMãè¶³ããªãå Žåã¯ã`--blocks_to_swap`ãæå®ããŠãäžéšã®ãããã¯ãCPUã«ãªãããŒãããŠãã ãããæå€§36ãæå®ã§ããŸãã
+
+ïŒblock swapã®ã¢ã€ãã¢ã¯2kpræ°ã®å®è£
ã«åºã¥ããã®ã§ãã2kpræ°ã«ãããããŠæè¬ããŸããïŒ
+
+`--use_pinned_memory_for_block_swap`ãæå®ãããšãblock swapã«ãã³çãã¡ã¢ãªã䜿çšããŸããCPUãšGPUéã§ãããã¯ãã¹ã¯ããããéã®ããã©ãŒãã³ã¹ãåäžããå¯èœæ§ããããŸãããã ããWindowsç°å¢ã§ã¯å
±æVRAM䜿çšéãå¢å ããå¯èœæ§ããããŸããã·ã¹ãã æ§æïŒå©çšå¯èœãªã·ã¹ãã RAMãVRAMãªã©ïŒã«å¿ããŠããã®ãªãã·ã§ã³ã䜿çšããŠãã ãããç°å¢ã«ãã£ãŠã¯æå®ããªãã»ããé«éã«ãªãå ŽåããããŸãã
+
+`--gradient_checkpointing_cpu_offload`ãæå®ãããšãgradient checkpointingäœ¿çšæã«ã¢ã¯ãã£ããŒã·ã§ã³ãCPUã«ãªãããŒãããŸããããã«ããVRAM䜿çšéãããã«åæžã§ããŸãããåŠç¿ãé
ããªãå¯èœæ§ããããŸããlatentè§£å床ïŒãŸãã¯åç»é·ïŒãé«ããVRAMãéãããŠããå Žåã«ç¹ã«æçšã§ãããã®ãªãã·ã§ã³ã¯`--gradient_checkpointing`ãšäœµçšããå¿
èŠããããŸãã詳现ã¯[PR #537](https://github.com/Dao-AILab/flash-attention/pull/537)ãåç
§ããŠãã ããã
+
+**Attention**
+
+`--sdpa`ã§PyTorchã®scaled dot product attentionã䜿çšããŸãã`--flash_attn`ã§[FlashAttention]:(https://github.com/Dao-AILab/flash-attention)ã䜿çšããŸãã`--xformers`ã§xformersã®å©çšãå¯èœã§ãããxformersã䜿ãå Žåã¯`--split_attn`ãæå®ããŠãã ããã`--sage_attn`ã§SageAttentionã䜿çšããŸãããSageAttentionã¯çŸæç¹ã§ã¯åŠç¿ã«æªå¯Ÿå¿ã®ããããšã©ãŒãçºçããŸãã
+
+`--split_attn`ãæå®ãããšãattentionãåå²ããŠåŠçããŸããé床ãå€å°äœäžããŸãããVRAM䜿çšéã¯ãããã«æžããŸãã
+
+**ã¿ã€ã ã¹ããããµã³ããªã³ã°**
+
+`--min_timestep`ãš`--max_timestep`ãæå®ãããšãåŠç¿æã®ã¿ã€ã ã¹ãããã®ç¯å²ãæå®ã§ããŸãã詳现ã¯[é«åºŠãªèšå®](../advanced_config.md#specify-time-step-range-for-training--åŠç¿æã®ã¿ã€ã ã¹ãããç¯å²ã®æå®)ãåç
§ããŠãã ããã
+
+`--show_timesteps`ã«`image`ïŒ`matplotlib`ãå¿
èŠïŒãŸãã¯`console`ãæå®ãããšãåŠç¿æã®timestepsã®ååžãštimestepsããšã®loss weightingã確èªã§ããŸããïŒ`flux_shift`ãš`qwen_shift`ã䜿çšããå Žåã¯ç»åã®è§£å床ã1024x1024ã®å Žåã®ååžã«ãªããŸããïŒ
+
+**ãã®ä»ã®ãªãã·ã§ã³**
+
+åŠç¿ãããLoRAã®åœ¢åŒã¯ã`sd-scripts`ãšåãã§ãã
+
+åŠç¿æã®ãã°ã®èšé²ãå¯èœã§ãã[TensorBoard圢åŒã®ãã°ã®ä¿åãšåç
§](../advanced_config.md#save-and-view-logs-in-tensorboard-format--tensorboard圢åŒã®ãã°ã®ä¿åãšåç
§)ãåç
§ããŠãã ããã
+
+PyTorch Dynamoã«ããæé©åãè¡ãå Žåã¯ã[ãã¡ã](../advanced_config.md#pytorch-dynamo-optimization-for-model-training--ã¢ãã«ã®åŠç¿ã«ãããpytorch-dynamoã®æé©å)ãåç
§ããŠãã ããã
+
+åŠç¿äžã®ãµã³ãã«ç»åçæã«ã€ããŠã¯ã[ãã¡ãã®ããã¥ã¡ã³ã](../sampling_during_training.md)ãåç
§ããŠãã ããããã®ä»ã®é«åºŠãªèšå®ã«ã€ããŠã¯[ãã¡ãã®ããã¥ã¡ã³ã](../advanced_config.md)ãåç
§ããŠãã ããã
+
+
+
+### Merging LoRA Weights / LoRAã®éã¿ã®ããŒãž
+
+```bash
+python src/musubi_tuner/merge_lora.py \
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt \
+ --lora_weight path/to/lora.safetensors \
+ --save_merged_model path/to/merged_model.safetensors \
+ --device cpu \
+ --lora_multiplier 1.0
+```
+
+or for uv:
+
+```bash
+uv run --extra cu124 src/musubi_tuner/merge_lora.py \
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt \
+ --lora_weight path/to/lora.safetensors \
+ --save_merged_model path/to/merged_model.safetensors \
+ --device cpu \
+ --lora_multiplier 1.0
+```
+
+Specify the device to perform the calculation (`cpu` or `cuda`, etc.) with `--device`. Calculation will be faster if `cuda` is specified.
+
+Specify the LoRA weights to merge with `--lora_weight` and the multiplier for the LoRA weights with `--lora_multiplier`. Multiple values can be specified, and the number of values must match.
+
+
+æ¥æ¬èª
+
+```bash
+python src/musubi_tuner/merge_lora.py \
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt \
+ --lora_weight path/to/lora.safetensors \
+ --save_merged_model path/to/merged_model.safetensors \
+ --device cpu \
+ --lora_multiplier 1.0
+```
+
+`--device`ã«ã¯èšç®ãè¡ãããã€ã¹ïŒ`cpu`ãŸãã¯`cuda`çïŒãæå®ããŠãã ããã`cuda`ãæå®ãããšèšç®ãé«éåãããŸãã
+
+`--lora_weight`ã«ã¯ããŒãžããLoRAã®éã¿ãã`--lora_multiplier`ã«ã¯LoRAã®éã¿ã®ä¿æ°ããããããæå®ããŠãã ãããè€æ°åãæå®å¯èœã§ãäž¡è
ã®æ°ã¯äžèŽãããŠãã ããã
+
+
+
+## Inference / æšè«
+
+Generate videos using the following command:
+
+```bash
+python src/musubi_tuner/hv_generate_video.py --fp8 --video_size 544 960 --video_length 5 --infer_steps 30
+ --prompt "A cat walks on the grass, realistic style." --save_path path/to/save/dir --output_type both
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt --attn_mode sdpa --split_attn
+ --vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt
+ --vae_chunk_size 32 --vae_spatial_tile_sample_min_size 128
+ --text_encoder1 path/to/ckpts/text_encoder
+ --text_encoder2 path/to/ckpts/text_encoder_2
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+or for uv:
+
+```bash
+uv run --extra cu124 src/musubi_tuner/hv_generate_video.py --fp8 --video_size 544 960 --video_length 5 --infer_steps 30
+ --prompt "A cat walks on the grass, realistic style." --save_path path/to/save/dir --output_type both
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt --attn_mode sdpa --split_attn
+ --vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt
+ --vae_chunk_size 32 --vae_spatial_tile_sample_min_size 128
+ --text_encoder1 path/to/ckpts/text_encoder
+ --text_encoder2 path/to/ckpts/text_encoder_2
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+For additional options, use `python src/musubi_tuner/hv_generate_video.py --help`.
+
+Specifying `--fp8` runs DiT in fp8 mode. fp8 can significantly reduce memory consumption but may impact output quality.
+
+`--fp8_fast` option is also available for faster inference on RTX 40x0 GPUs. This option requires `--fp8` option.
+
+If you're running low on VRAM, use `--blocks_to_swap` to offload some blocks to CPU. Maximum value is 38.
+
+For `--attn_mode`, specify either `flash`, `torch`, `sageattn`, `xformers`, or `sdpa` (same as `torch`). These correspond to FlashAttention, scaled dot product attention, SageAttention, and xformers, respectively. Default is `torch`. SageAttention is effective for VRAM reduction.
+
+Specifing `--split_attn` will process attention in chunks. Inference with SageAttention is expected to be about 10% faster.
+
+For `--output_type`, specify either `both`, `latent`, `video` or `images`. `both` outputs both latents and video. Recommended to use `both` in case of Out of Memory errors during VAE processing. You can specify saved latents with `--latent_path` and use `--output_type video` (or `images`) to only perform VAE decoding.
+
+`--seed` is optional. A random seed will be used if not specified.
+
+`--video_length` should be specified as "a multiple of 4 plus 1".
+
+`--flow_shift` can be specified to shift the timestep (discrete flow shift). The default value when omitted is 7.0, which is the recommended value for 50 inference steps. In the HunyuanVideo paper, 7.0 is recommended for 50 steps, and 17.0 is recommended for less than 20 steps (e.g. 10).
+
+By specifying `--video_path`, video2video inference is possible. Specify a video file or a directory containing multiple image files (the image files are sorted by file name and used as frames). An error will occur if the video is shorter than `--video_length`. You can specify the strength with `--strength`. It can be specified from 0 to 1.0, and the larger the value, the greater the change from the original video.
+
+Note that video2video inference is experimental.
+
+`--compile` option enables PyTorch's compile feature (experimental). Requires triton. On Windows, also requires Visual C++ build tools installed and PyTorch>=2.6.0 (Visual C++ build tools is also required). See [the torch.compile documentation](torch_compile.md) for details.
+
+The `--compile` option takes a long time to run the first time, but speeds up on subsequent runs.
+
+You can save the DiT model after LoRA merge with the `--save_merged_model` option. Specify `--save_merged_model path/to/merged_model.safetensors`. Note that inference will not be performed when this option is specified.
+
+
+æ¥æ¬èª
+
+以äžã®ã³ãã³ãã䜿çšããŠåç»ãçæããŸãã
+
+```bash
+python src/musubi_tuner/hv_generate_video.py --fp8 --video_size 544 960 --video_length 5 --infer_steps 30
+ --prompt "A cat walks on the grass, realistic style." --save_path path/to/save/dir --output_type both
+ --dit path/to/ckpts/hunyuan-video-t2v-720p/transformers/mp_rank_00_model_states.pt --attn_mode sdpa --split_attn
+ --vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt
+ --vae_chunk_size 32 --vae_spatial_tile_sample_min_size 128
+ --text_encoder1 path/to/ckpts/text_encoder
+ --text_encoder2 path/to/ckpts/text_encoder_2
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯`python src/musubi_tuner/hv_generate_video.py --help`ã§ç¢ºèªã§ããŸãã
+
+`--fp8`ãæå®ãããšãDiTãfp8ã§æšè«ãããŸããfp8ã¯å€§ããæ¶è²»ã¡ã¢ãªãåæžã§ããŸãããå質ã¯äœäžããå¯èœæ§ããããŸãã
+
+RTX 40x0ã·ãªãŒãºã®GPUã䜿çšããŠããå Žåã¯ã`--fp8_fast`ãªãã·ã§ã³ãæå®ããããšã§ãé«éæšè«ãå¯èœã§ãããã®ãªãã·ã§ã³ãæå®ããå Žåã¯ã`--fp8`ãæå®ããŠãã ããã
+
+VRAMãè¶³ããªãå Žåã¯ã`--blocks_to_swap`ãæå®ããŠãäžéšã®ãããã¯ãCPUã«ãªãããŒãããŠãã ãããæå€§38ãæå®ã§ããŸãã
+
+`--attn_mode`ã«ã¯`flash`ã`torch`ã`sageattn`ã`xformers`ãŸãã¯`sdpa`ïŒ`torch`æå®æãšåãïŒã®ãããããæå®ããŠãã ãããããããFlashAttentionãscaled dot product attentionãSageAttentionãxformersã«å¯Ÿå¿ããŸããããã©ã«ãã¯`torch`ã§ããSageAttentionã¯VRAMã®åæžã«æå¹ã§ãã
+
+`--split_attn`ãæå®ãããšãattentionãåå²ããŠåŠçããŸããSageAttentionå©çšæã§10%çšåºŠã®é«éåãèŠèŸŒãŸããŸãã
+
+`--output_type`ã«ã¯`both`ã`latent`ã`video`ã`images`ã®ãããããæå®ããŠãã ããã`both`ã¯latentãšåç»ã®äž¡æ¹ãåºåããŸããVAEã§Out of Memoryãšã©ãŒãçºçããå Žåã«åããŠã`both`ãæå®ããããšããå§ãããŸãã`--latent_path`ã«ä¿åãããlatentãæå®ãã`--output_type video` ïŒãŸãã¯`images`ïŒãšããŠã¹ã¯ãªãããå®è¡ãããšãVAEã®decodeã®ã¿ãè¡ããŸãã
+
+`--seed`ã¯çç¥å¯èœã§ããæå®ããªãå Žåã¯ã©ã³ãã ãªã·ãŒãã䜿çšãããŸãã
+
+`--video_length`ã¯ã4ã®åæ°+1ããæå®ããŠãã ããã
+
+`--flow_shift`ã«ã¿ã€ã ã¹ãããã®ã·ããå€ïŒdiscrete flow shiftïŒãæå®å¯èœã§ããçç¥æã®ããã©ã«ãå€ã¯7.0ã§ãããã¯æšè«ã¹ãããæ°ã50ã®æã®æšå¥šå€ã§ããHunyuanVideoã®è«æã§ã¯ãã¹ãããæ°50ã®å Žåã¯7.0ãã¹ãããæ°20æªæºïŒ10ãªã©ïŒã§17.0ãæšå¥šãããŠããŸãã
+
+`--video_path`ã«èªã¿èŸŒãåç»ãæå®ãããšãvideo2videoã®æšè«ãå¯èœã§ããåç»ãã¡ã€ã«ãæå®ããããè€æ°ã®ç»åãã¡ã€ã«ãå
¥ã£ããã£ã¬ã¯ããªãæå®ããŠãã ããïŒç»åãã¡ã€ã«ã¯ãã¡ã€ã«åã§ãœãŒããããåãã¬ãŒã ãšããŠçšããããŸãïŒã`--video_length`ãããçãåç»ãæå®ãããšãšã©ãŒã«ãªããŸãã`--strength`ã§åŒ·åºŠãæå®ã§ããŸãã0~1.0ã§æå®ã§ãã倧ããã»ã©å
ã®åç»ããã®å€åã倧ãããªããŸãã
+
+ãªãvideo2videoæšè«ã®åŠçã¯å®éšçãªãã®ã§ãã
+
+`--compile`ãªãã·ã§ã³ã§PyTorchã®ã³ã³ãã€ã«æ©èœãæå¹ã«ããŸãïŒå®éšçæ©èœïŒãtritonã®ã€ã³ã¹ããŒã«ãå¿
èŠã§ãããŸããWindowsã§ã¯Visual C++ build toolsãå¿
èŠã§ããã€PyTorch>=2.6.0ã§ã®ã¿åäœããŸãã詳现ã¯[torch.compileã®ããã¥ã¡ã³ã](torch_compile.md)ãåç
§ããŠãã ããã
+
+`--compile`ã¯ååå®è¡æã«ããªãã®æéãããããŸããã2åç®ä»¥éã¯é«éåãããŸãã
+
+`--save_merged_model`ãªãã·ã§ã³ã§ãLoRAããŒãžåŸã®DiTã¢ãã«ãä¿åã§ããŸãã`--save_merged_model path/to/merged_model.safetensors`ã®ããã«æå®ããŠãã ããããªããã®ãªãã·ã§ã³ãæå®ãããšæšè«ã¯è¡ãããŸããã
+
+
+
+### Inference with SkyReels V1 / SkyReels V1ã§ã®æšè«
+
+SkyReels V1 T2V and I2V models are supported (inference only).
+
+The model can be downloaded from [here](https://huggingface.co/Kijai/SkyReels-V1-Hunyuan_comfy). Many thanks to Kijai for providing the model. `skyreels_hunyuan_i2v_bf16.safetensors` is the I2V model, and `skyreels_hunyuan_t2v_bf16.safetensors` is the T2V model. The models other than bf16 are not tested (`fp8_e4m3fn` may work).
+
+For T2V inference, add the following options to the inference command:
+
+```bash
+--guidance_scale 6.0 --embedded_cfg_scale 1.0 --negative_prompt "Aerial view, aerial view, overexposed, low quality, deformation, a poor composition, bad hands, bad teeth, bad eyes, bad limbs, distortion" --split_uncond
+```
+
+SkyReels V1 seems to require a classfier free guidance (negative prompt).`--guidance_scale` is a guidance scale for the negative prompt. The recommended value is 6.0 from the official repository. The default is 1.0, it means no classifier free guidance.
+
+`--embedded_cfg_scale` is a scale of the embedded guidance. The recommended value is 1.0 from the official repository (it may mean no embedded guidance).
+
+`--negative_prompt` is a negative prompt for the classifier free guidance. The above sample is from the official repository. If you don't specify this, and specify `--guidance_scale` other than 1.0, an empty string will be used as the negative prompt.
+
+`--split_uncond` is a flag to split the model call into unconditional and conditional parts. This reduces VRAM usage but may slow down inference. If `--split_attn` is specified, `--split_uncond` is automatically set.
+
+You can also perform image2video inference with SkyReels V1 I2V model. Specify the image file path with `--image_path`. The image will be resized to the given `--video_size`.
+
+```bash
+--image_path path/to/image.jpg
+```
+
+
+æ¥æ¬èª
+
+SkyReels V1ã®T2VãšI2Vã¢ãã«ããµããŒããããŠããŸãïŒæšè«ã®ã¿ïŒã
+
+ã¢ãã«ã¯[ãã¡ã](https://huggingface.co/Kijai/SkyReels-V1-Hunyuan_comfy)ããããŠã³ããŒãã§ããŸããã¢ãã«ãæäŸããŠãã ãã£ãKijaiæ°ã«æè¬ããŸãã`skyreels_hunyuan_i2v_bf16.safetensors`ãI2Vã¢ãã«ã`skyreels_hunyuan_t2v_bf16.safetensors`ãT2Vã¢ãã«ã§ãã`bf16`以å€ã®åœ¢åŒã¯æªæ€èšŒã§ãïŒ`fp8_e4m3fn`ã¯åäœãããããããŸããïŒã
+
+T2Væšè«ãè¡ãå Žåã以äžã®ãªãã·ã§ã³ãæšè«ã³ãã³ãã«è¿œå ããŠãã ããïŒ
+
+```bash
+--guidance_scale 6.0 --embedded_cfg_scale 1.0 --negative_prompt "Aerial view, aerial view, overexposed, low quality, deformation, a poor composition, bad hands, bad teeth, bad eyes, bad limbs, distortion" --split_uncond
+```
+
+SkyReels V1ã¯classifier free guidanceïŒãã¬ãã£ãããã³ããïŒãå¿
èŠãšããããã§ãã`--guidance_scale`ã¯ãã¬ãã£ãããã³ããã®ã¬ã€ãã³ã¹ã¹ã±ãŒã«ã§ããå
¬åŒãªããžããªã®æšå¥šå€ã¯6.0ã§ããããã©ã«ãã¯1.0ã§ããã®å Žåã¯classifier free guidanceã¯äœ¿çšãããŸããïŒãã¬ãã£ãããã³ããã¯ç¡èŠãããŸãïŒã
+
+`--embedded_cfg_scale`ã¯åã蟌ã¿ã¬ã€ãã³ã¹ã®ã¹ã±ãŒã«ã§ããå
¬åŒãªããžããªã®æšå¥šå€ã¯1.0ã§ãïŒåã蟌ã¿ã¬ã€ãã³ã¹ãªããæå³ãããšæãããŸãïŒã
+
+`--negative_prompt`ã¯ãããããã¬ãã£ãããã³ããã§ããäžèšã®ãµã³ãã«ã¯å
¬åŒãªããžããªã®ãã®ã§ãã`--guidance_scale`ãæå®ãã`--negative_prompt`ãæå®ããªãã£ãå Žåã¯ã空æååã䜿çšãããŸãã
+
+`--split_uncond`ãæå®ãããšãã¢ãã«åŒã³åºããuncondãšcondïŒãã¬ãã£ãããã³ãããšããã³ããïŒã«åå²ããŸããVRAM䜿çšéãæžããŸãããæšè«é床ã¯äœäžããå¯èœæ§ããããŸãã`--split_attn`ãæå®ãããŠããå Žåã`--split_uncond`ã¯èªåçã«æå¹ã«ãªããŸãã
+
+
+
+### Convert LoRA to another format / LoRAã®åœ¢åŒã®å€æ
+
+You can convert LoRA to a format (presumed to be Diffusion-pipe) compatible with another inference environment (Diffusers, ComfyUI etc.) using the following command:
+
+```bash
+python src/musubi_tuner/convert_lora.py --input path/to/musubi_lora.safetensors --output path/to/another_format.safetensors --target other
+```
+
+or for uv:
+
+```bash
+uv run --extra cu124 src/musubi_tuner/convert_lora.py --input path/to/musubi_lora.safetensors --output path/to/another_format.safetensors --target other
+```
+
+Specify the input and output file paths with `--input` and `--output`, respectively.
+
+Specify `other` for `--target`. Use `default` to convert from another format to the format of this repository.
+
+
+æ¥æ¬èª
+
+ä»ã®æšè«ç°å¢ïŒDiffusersãComfyUIïŒã§äœ¿çšå¯èœãªåœ¢åŒïŒDiffusion-pipe ãŸã㯠Diffusers ãšæãããïŒãžã®å€æã¯ä»¥äžã®ã³ãã³ãã§è¡ããŸãã
+
+```bash
+python src/musubi_tuner/convert_lora.py --input path/to/musubi_lora.safetensors --output path/to/another_format.safetensors --target other
+```
+
+`--input`ãš`--output`ã¯ããããå
¥åãšåºåã®ãã¡ã€ã«ãã¹ãæå®ããŠãã ããã
+
+`--target`ã«ã¯`other`ãæå®ããŠãã ããã`default`ãæå®ãããšãä»ã®åœ¢åŒããåœãªããžããªã®åœ¢åŒã«å€æã§ããŸãã
+
+
diff --git a/docs/hunyuan_video_1_5.md b/docs/hunyuan_video_1_5.md
new file mode 100644
index 0000000000000000000000000000000000000000..79bc9fe60844e8fda02b03c7d860604c1a91d061
--- /dev/null
+++ b/docs/hunyuan_video_1_5.md
@@ -0,0 +1,372 @@
+# HunyuanVideo 1.5
+
+## Overview / æŠèŠ
+
+This document describes the usage of HunyuanVideo 1.5 architecture within the Musubi Tuner framework. HunyuanVideo 1.5 is a video generation model that supports both text-to-video (T2V) and image-to-video (I2V) generation.
+
+Pre-caching, training, and inference options can be found via `--help`. Many options are shared with HunyuanVideo, so refer to the [HunyuanVideo documentation](./hunyuan_video.md) as needed.
+
+This feature is experimental.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã¯ãMusubi Tunerãã¬ãŒã ã¯ãŒã¯å
ã§ã®HunyuanVideo 1.5ã¢ãŒããã¯ãã£ã®äœ¿çšæ³ã«ã€ããŠèª¬æããŠããŸããHunyuanVideo 1.5ã¯ããã¹ãããåç»ãçæïŒT2VïŒãããã³ç»åããåç»ãçæïŒI2VïŒããããšãã§ããã¢ãã«ã§ãã
+
+äºåãã£ãã·ã³ã°ãåŠç¿ãæšè«ã®ãªãã·ã§ã³ã¯`--help`ã§ç¢ºèªããŠãã ãããHunyuanVideoãšå
±éã®ãªãã·ã§ã³ãå€ããããŸãã®ã§ãå¿
èŠã«å¿ããŠ[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md)ãåç
§ããŠãã ããã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+You need to download the DiT, VAE, Text Encoder (Qwen2.5-VL), and BYT5 models.
+
+- **DiT**: Download from [HuggingFace's HunyuanVideo 1.5 site](https://huggingface.co/tencent/HunyuanVideo-1.5/tree/main). Use `transformer/720p_i2v/diffusion_pytorch_model.safetensors` for I2V DiT and `transformer/720p_t2v/diffusion_pytorch_model.safetensors` for T2V DiT.
+Alternatively, you can use `split_files/diffusion_models/hunyuanvideo1.5_720p_i2v_fp16.safetensors` and `split_files/diffusion_models/hunyuanvideo1.5_720p_t2v_fp16.safetensors` from [ComfyUI's HunyuanVideo 1.5 weights](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main), but do not use these for bf16 training as the weights are converted to fp16.
+
+- **Text Encoder (Qwen2.5-VL)**: Download from [ComfyUI's HunyuanVideo 1.5 weights](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main). Use `split_files/text_encoders/qwen_2.5_vl_7b.safetensors`.
+
+- **BYT5**: Download from [ComfyUI's HunyuanVideo 1.5 weights](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main). Use `split_files/text_encoders/byt5_small_glyphxl_fp16.safetensors`.
+
+For I2V training or inference, you also need:
+
+- **Image Encoder (SigLIP)**: Download from [ComfyUI's HunyuanVideo 1.5 weights](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main). Use `split_files/clip_vision/sigclip_vision_patch14_384.safetensors`.
+
+
+æ¥æ¬èª
+
+DiT, VAE, Text Encoder (Qwen2.5-VL), BYT5 ã®ã¢ãã«ãããŠã³ããŒãããå¿
èŠããããŸãã
+
+- **DiT**: [HuggingFaceã®HunyuanVideo 1.5ã®ãµã€ã](https://huggingface.co/tencent/HunyuanVideo-1.5/tree/main) ããããŠã³ããŒãããŠãã ããã
+I2Vã®DiTã«ã¯`transformer/720p_i2v/diffusion_pytorch_model.safetensors`ããT2Vã®DiTã«ã¯`transformer/720p_t2v/diffusion_pytorch_model.safetensors`ã䜿çšããŠãã ããã
+[ComfyUIã®HunyuanVideo 1.5çšã®éã¿](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main)ã®`split_files/diffusion_models/hunyuanvideo1.5_720p_i2v_fp16.safetensors`ããã³`split_files/diffusion_models/hunyuanvideo1.5_720p_t2v_fp16.safetensors`ã䜿çšå¯èœã§ãããéã¿ãfp16ã«å€æãããŠãããããbf16åŠç¿ã®æã«ã¯äœ¿çšããªãã§ãã ããã
+
+- **VAE**: [HuggingFaceã®HunyuanVideo 1.5ã®ãµã€ã](https://huggingface.co/tencent/HunyuanVideo-1.5/tree/main) ãã `vae/diffusion_pytorch_model.safetensors` ãããŠã³ããŒãããŠãã ããã
+ãŸãã¯ã[ComfyUIã®HunyuanVideo 1.5çšã®éã¿](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main)ã®`split_files/vae/hunyuanvideo15_vae_fp16.safetensors`ã䜿çšå¯èœã§ãã
+
+- **Text Encoder (Qwen2.5-VL)**: [ComfyUIã®HunyuanVideo 1.5çšã®éã¿](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main)ãã`split_files/text_encoders/qwen_2.5_vl_7b.safetensors`ãããŠã³ããŒãããŠãã ããã
+
+- **BYT5**: [ComfyUIã®HunyuanVideo 1.5çšã®éã¿](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main)ãã`split_files/text_encoders/byt5_small_glyphxl_fp16.safetensors`ãããŠã³ããŒãããŠãã ããã
+
+I2VåŠç¿ãŸãã¯æšè«ãè¡ãå Žåã¯ãããã«ä»¥äžãå¿
èŠã§ãïŒ
+
+- **Image Encoder (SigLIP)**: [ComfyUIã®HunyuanVideo 1.5çšã®éã¿](https://huggingface.co/Comfy-Org/HunyuanVideo_1.5_repackaged/tree/main)ãã `split_files/clip_vision/sigclip_vision_patch14_384.safetensors` ãããŠã³ããŒãããŠãã ããã
+
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching uses a dedicated script for HunyuanVideo 1.5.
+
+```bash
+python src/musubi_tuner/hv_1_5_cache_latents.py \
+ --dataset_config path/to/toml \
+ --vae path/to/vae_model
+```
+
+- Uses `hv_1_5_cache_latents.py`.
+- The dataset can be either an image dataset or a video dataset.
+- `--vae_sample_size` option sets the VAE sample size for tiling. Default is 128. Set to 256 if VRAM is sufficient for better quality. Set to 0 to disable tiling (highest quality but consumes a lot of VRAM).
+- `--vae_enable_patch_conv` option enables patch-based convolution in VAE for memory optimization (less effective than `--vae_sample_size`). No quality degradation.
+- For I2V training, specify `--i2v` and `--image_encoder path/to/image_encoder` to cache image features and conditional latents.
+
+
+æ¥æ¬èª
+
+latentã®äºåãã£ãã·ã³ã°ã¯HunyuanVideo 1.5å°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `hv_1_5_cache_latents.py`ã䜿çšããŸãã
+- ããŒã¿ã»ããã¯ç»åããŒã¿ã»ãããŸãã¯åç»ããŒã¿ã»ããã®ããããã§ãã
+- `--vae_sample_size`ãªãã·ã§ã³ã§VAEã®ã¿ã€ãªã³ã°çšãµã³ãã«ãµã€ãºãèšå®ããŸããããã©ã«ãã¯128ã§ããVRAMãååãªå Žåã¯256ã«èšå®ãããšå質ãåäžããŸãã0ã«èšå®ãããšã¿ã€ãªã³ã°ãç¡å¹ã«ããŸãïŒæè¯ã®å質ã§ããéåžžã«å€ãã®VRAMãæ¶è²»ããŸãïŒã
+- `--vae_enable_patch_conv`ãªãã·ã§ã³ã§VAEã®ãããããŒã¹ç³ã¿èŸŒã¿ãæå¹ã«ããã¡ã¢ãªãæé©åããŸãïŒã¡ã¢ãªåæžå¹æã¯`--vae_sample_size`ãããèœã¡ãŸãïŒãå質ã®å£åã¯ãããŸããã
+- I2VåŠç¿ã®å Žåã¯ã`--i2v`ãš`--image_encoder path/to/image_encoder`ãæå®ããŠãç»åã®ç¹åŸŽãšæ¡ä»¶ä»ãlatentããã£ãã·ã¥ããŸãã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text encoder output pre-caching also uses a dedicated script.
+
+```bash
+python src/musubi_tuner/hv_1_5_cache_text_encoder_outputs.py \
+ --dataset_config path/to/toml \
+ --text_encoder path/to/text_encoder \
+ --byt5 path/to/byt5 \
+ --batch_size 16
+```
+
+- Uses `hv_1_5_cache_text_encoder_outputs.py`.
+- Requires both `--text_encoder` (Qwen2.5-VL) and `--byt5` arguments.
+- Use `--fp8_vl` option to run the Qwen2.5-VL Text Encoder in fp8 mode for VRAM savings.
+- The larger the batch size, the more VRAM is required. Adjust `--batch_size` according to your VRAM capacity.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°ãå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `hv_1_5_cache_text_encoder_outputs.py`ã䜿çšããŸãã
+- `--text_encoder`ïŒQwen2.5-VLïŒãš`--byt5`ã®äž¡æ¹ã®åŒæ°ãå¿
èŠã§ãã
+- Qwen2.5-VLããã¹ããšã³ã³ãŒããŒãfp8ã¢ãŒãã§å®è¡ããããã®`--fp8_vl`ãªãã·ã§ã³ã䜿çšããŸãã
+- ããããµã€ãºã倧ããã»ã©ãããå€ãã®VRAMãå¿
èŠã§ããVRAM容éã«å¿ããŠ`--batch_size`ã調æŽããŠãã ããã
+
+
+
+## Training / åŠç¿
+
+Training uses a dedicated script `hv_1_5_train_network.py`.
+
+### Text-to-Video (T2V) Training
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_1_5_train_network.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --byt5 path/to/byt5 \
+ --dataset_config path/to/toml \
+ --task t2v \
+ --sdpa --mixed_precision bf16 \
+ --timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0
+ --optimizer_type adamw8bit --learning_rate 1e-4 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_hv_1_5 --network_dim 32 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+### Image-to-Video (I2V) Training
+
+For I2V training, specify `--task i2v` and provide the `--image_encoder` path:
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_1_5_train_network.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --byt5 path/to/byt5 \
+ --image_encoder path/to/image_encoder \
+ --dataset_config path/to/toml \
+ --task i2v \
+ --sdpa --mixed_precision bf16 \
+ --timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0 \
+ --optimizer_type adamw8bit --learning_rate 1e-4 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_hv_1_5 --network_dim 32 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+- Uses `hv_1_5_train_network.py`.
+- **Requires** specifying `--vae`, `--text_encoder`, and `--byt5`.
+- **Requires** specifying `--network_module networks.lora_hv_1_5`.
+- **Requires** specifying `--task` as either `t2v` or `i2v`.
+- For I2V training, `--image_encoder` is required.
+- It is not yet clear whether `--mixed_precision bf16` or `fp16` is better for HunyuanVideo 1.5 training.
+- The timestep sampling settings for HunyuanVideo 1.5 training are unclear, but it may be good to base them on `--timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0` and adjust as needed.
+- The recommended optimizer is `--optimizer_type Muon`, but it is only available in PyTorch 2.9 and later. If your PyTorch version is older, use `--optimizer_type adamw8bit` or similar.
+- Memory saving options like `--fp8_base` and `--fp8_scaled` (for DiT) and `--fp8_vl` (for Text Encoder) are available.
+- `--gradient_checkpointing` is available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+
+
+æ¥æ¬èª
+
+HunyuanVideo 1.5ã®åŠç¿ã¯å°çšã®ã¹ã¯ãªãã`hv_1_5_train_network.py`ã䜿çšããŸãã
+
+**Text-to-Video (T2V) åŠç¿**
+
+ã³ãã³ãäŸã¯è±èªçãåç
§ããŠãã ããã
+
+**Image-to-Video (I2V) åŠç¿**
+
+I2VåŠç¿ãè¡ãå Žåã`--task i2v`ãæå®ãã`--image_encoder`ãã¹ãæäŸããŸãïŒ
+
+ã³ãã³ãäŸã¯è±èªçãåç
§ããŠãã ããã
+
+- `hv_1_5_train_network.py`ã䜿çšããŸãã
+- `--vae`ã`--text_encoder`ã`--byt5`ãæå®ããå¿
èŠããããŸãã
+- `--network_module networks.lora_hv_1_5`ãæå®ããå¿
èŠããããŸãã
+- `--task`ã«`t2v`ãŸãã¯`i2v`ãæå®ããå¿
èŠããããŸãã
+- I2VåŠç¿ã®å Žåã¯ã`--image_encoder`ãå¿
èŠã§ãã
+- HunyuanVideo 1.5ã®åŠç¿ã«`--mixed_precision bf16`ãš`fp16`ã®ã©ã¡ããè¯ããã¯ãŸã äžæã§ãã
+- HunyuanVideo 1.5ã®ã¿ã€ã ã¹ããããµã³ããªã³ã°èšå®ã¯äžæã§ããã`--timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0`ãããŒã¹ã«èª¿æŽãããšè¯ããããããŸããã
+- ãªããã£ãã€ã¶ã«ã¯`--optimizer_type Muon`ãæšå¥šããŸãããPyTorch 2.9以éã§ã®ã¿å©çšå¯èœã§ããPyTorchã®ããŒãžã§ã³ãå€ãå Žåã¯`--optimizer_type adamw8bit`ãªã©ã䜿çšããŠãã ããã
+- `--fp8_base`ã`--fp8_scaled`ïŒDiTçšïŒã`--fp8_vl`ïŒããã¹ããšã³ã³ãŒããŒçšïŒãªã©ã®ã¡ã¢ãªç¯çŽãªãã·ã§ã³ãå©çšå¯èœã§ãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãå©çšå¯èœã§ãã詳现ã¯[HunyuanVideoããã¥ã¡ã³ã](./hunyuan_video.md#memory-optimization)ãåç
§ããŠãã ããã
+
+
+
+### Memory Optimization
+
+- `--fp8_base` and `--fp8_scaled` options are available to reduce memory usage of DiT (specify both together). Quality may degrade slightly.
+- `--fp8_vl` option is available to reduce memory usage of Text Encoder (Qwen2.5-VL).
+- `--vae_sample_size` (default 128) controls VAE tiling size. Set to 256 if VRAM is sufficient for better quality. Set to 0 to disable tiling.
+- `--vae_enable_patch_conv` enables patch-based convolution in VAE for memory optimization.
+- `--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+- `--blocks_to_swap` option is available to offload some blocks to CPU. The maximum number of blocks that can be offloaded is 51.
+
+
+æ¥æ¬èª
+
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_base`ãš`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ãïŒåæã«æå®ããŠãã ããïŒãå質ã¯ããäœäžããå¯èœæ§ããããŸãã
+- Text Encoder (Qwen2.5-VL)ã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_vl`ãªãã·ã§ã³ãæå®å¯èœã§ãã
+- `--vae_sample_size`ïŒããã©ã«ã128ïŒã§VAEã®ã¿ã€ãªã³ã°ãµã€ãºãå¶åŸ¡ããŸããVRAMãååãªå Žåã¯256ã«èšå®ãããšå質ãåäžããŸãã0ã«èšå®ãããšã¿ã€ãªã³ã°ãç¡å¹ã«ããŸãã
+- `--vae_enable_patch_conv`ã§VAEã®ãããããŒã¹ç³ã¿èŸŒã¿ãæå¹ã«ããã¡ã¢ãªãæé©åããŸãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãš`--gradient_checkpointing_cpu_offload`ãå©çšå¯èœã§ãã詳现ã¯[HunyuanVideoããã¥ã¡ã³ã](./hunyuan_video.md#memory-optimization)ãåç
§ããŠãã ããã
+- `--blocks_to_swap`ãªãã·ã§ã³ã§ãäžéšã®ãããã¯ãCPUã«ãªãããŒãã§ããŸãããªãããŒãå¯èœãªæå€§ãããã¯æ°ã¯51ã§ãã
+
+
+
+### Attention
+
+- `--sdpa` for PyTorch's scaled dot product attention (does not require additional dependencies).
+- `--flash_attn` for [FlashAttention](https://github.com/Dao-AILab/flash-attention).
+- `--xformers` for xformers (requires `--split_attn`).
+- `--sage_attn` for SageAttention (not yet supported for training).
+- `--split_attn` processes attention in chunks, reducing VRAM usage slightly.
+
+
+æ¥æ¬èª
+
+- `--sdpa`ã§PyTorchã®scaled dot product attentionã䜿çšïŒè¿œå ã®äŸåã©ã€ãã©ãªãå¿
èŠãšããŸããïŒã
+- `--flash_attn`ã§[FlashAttention](https://github.com/Dao-AILab/flash-attention)ã䜿çšã
+- `--xformers`ã§xformersã®å©çšãå¯èœïŒ`--split_attn`ãå¿
èŠïŒã
+- `--sage_attn`ã§SageAttentionã䜿çšïŒçŸæç¹ã§ã¯åŠç¿ã«æªå¯Ÿå¿ïŒã
+- `--split_attn`ãæå®ãããšãattentionãåå²ããŠåŠçããVRAM䜿çšéããããã«æžãããŸãã
+
+
+
+### Other Options
+
+For sample video generation during training, PyTorch Dynamo optimization, and other advanced configurations, refer to the [HunyuanVideo documentation](./hunyuan_video.md).
+
+
+æ¥æ¬èª
+
+åŠç¿äžã®ãµã³ãã«åç»çæãPyTorch Dynamoã«ããæé©åããã®ä»ã®é«åºŠãªèšå®ã«ã€ããŠã¯ã[HunyuanVideoããã¥ã¡ã³ã](./hunyuan_video.md)ãåç
§ããŠãã ããã
+
+
+
+### Coverting LoRA weights to ComfyUI format / LoRAéã¿ãComfyUI圢åŒã«å€æãã
+
+A script is provided to convert HunyuanVideo 1.5 LoRA weights to ComfyUI format.
+
+```bash
+python src/musubi_tuner/networks/convert_hunyuan_video_1_5_lora_to_comfy.py \
+ path/to/hv_1_5_lora.safetensors \
+ path/to/output_comfy_lora.safetensors
+```
+
+- The script is `convert_hunyuan_video_1_5_lora_to_comfy.py`.
+- The first argument is the input HunyuanVideo 1.5 LoRA weights file.
+- The second argument is the output ComfyUI-format LoRA weights file.
+- `--reverse` option is available to convert from ComfyUI format to HunyuanVideo 1.5 format. Only works for LoRA weights converted by this script.
+
+
+æ¥æ¬èª
+
+HunyuanVideo 1.5ã®LoRAéã¿ãComfyUI圢åŒã«å€æããã¹ã¯ãªãããæäŸãããŠããŸãã
+
+- ã¹ã¯ãªããã¯`convert_hunyuan_video_1_5_lora_to_comfy.py`ã§ãã
+- æåã®åŒæ°ã¯å
¥åã®HunyuanVideo 1.5 LoRAéã¿ãã¡ã€ã«ã§ãã
+- 2çªç®ã®åŒæ°ã¯åºåã®ComfyUI圢åŒã®LoRAéã¿ãã¡ã€ã«ã§ãã
+- `--reverse`ãªãã·ã§ã³ã§ãComfyUI圢åŒããHunyuanVideo 1.5圢åŒãžã®å€æãå¯èœã§ãããã®ãªãã·ã§ã³ã¯ããã®ã¹ã¯ãªããã§å€æãããLoRAéã¿ã«å¯ŸããŠã®ã¿æ©èœããŸãã
+
+
+
+## Inference / æšè«
+
+Inference uses a dedicated script `hv_1_5_generate_video.py`.
+
+The recommended number of frames is 121 and the recommended number of inference steps is 50 in the official script, but the samples below use smaller values.
+
+### Text-to-Video (T2V) Inference
+
+```bash
+python src/musubi_tuner/hv_1_5_generate_video.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --byt5 path/to/byt5 \
+ --prompt "A cat" \
+ --video_size 720 1280 --video_length 21 --infer_steps 25 \
+ --attn_mode sdpa --fp8_scaled \
+ --save_path path/to/save/dir --output_type video \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+### Image-to-Video (I2V) Inference
+
+For I2V inference, specify the `--image_path` and `--image_encoder`:
+
+```bash
+python src/musubi_tuner/hv_1_5_generate_video.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --byt5 path/to/byt5 \
+ --image_encoder path/to/image_encoder \
+ --image_path path/to/image.jpg \
+ --prompt "A cat walking" \
+ --video_size 720 1280 --video_length 21 --infer_steps 25 \
+ --attn_mode torch --fp8_scaled \
+ --save_path path/to/save/dir --output_type video \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+- Uses `hv_1_5_generate_video.py`.
+- **Requires** specifying `--vae`, `--text_encoder`, and `--byt5`.
+- For I2V inference, `--image_path` and `--image_encoder` are required.
+- `--video_size` is the size of the generated video, height and width are specified in that order.
+- `--video_length` should be specified as "a multiple of 4 plus 1".
+- `--prompt`: Prompt for generation.
+- `--fp8_scaled` option is available for DiT to reduce memory usage. Quality may be slightly lower.
+- `--vae_sample_size` (default 128) controls VAE tiling size. Set to 256 if VRAM is sufficient for better quality. Set to 0 to disable tiling.
+- `--vae_enable_patch_conv` enables patch-based convolution in VAE for memory optimization.
+- `--blocks_to_swap` option is available to offload some blocks to CPU. The maximum number of blocks that can be offloaded is 51.
+- LoRA loading options (`--lora_weight`, `--lora_multiplier`, `--include_patterns`, `--exclude_patterns`) are available. `--lycoris` is also supported.
+- `--guidance_scale` (default 6.0) controls the classifier-free guidance scale.
+- `--flow_shift` (default 7.0) controls the discrete flow shift.
+- `--save_merged_model` option is available to save the DiT model after merging LoRA weights. Inference is skipped if this is specified.
+
+For 121 frames at 720p (1280x720) size, VRAM usage is around 20GB even with `--blocks_to_swap 51`.
+
+
+æ¥æ¬èª
+
+HunyuanVideo 1.5ã®æšè«ã¯å°çšã®ã¹ã¯ãªãã`hv_1_5_generate_video.py`ã䜿çšããŸãã
+
+å
¬åŒã¹ã¯ãªããã®æšå¥šãã¬ãŒã æ°ã¯121ãæšè«ã¹ãããæ°ã¯50ã§ããããµã³ãã«ã§ã¯å°ãªãã«ããŠããŸãã
+
+**Text-to-Video (T2V) æšè«**
+
+ã³ãã³ãäŸã¯è±èªçãåç
§ããŠãã ããã
+
+**Image-to-Video (I2V) æšè«**
+
+I2Væšè«ãè¡ãå Žåã`--image_path`ãš`--image_encoder`ãæå®ããŸãïŒ
+
+ã³ãã³ãäŸã¯è±èªçãåç
§ããŠãã ããã
+
+- `hv_1_5_generate_video.py`ã䜿çšããŸãã
+- `--vae`ã`--text_encoder`ã`--byt5`ãæå®ããå¿
èŠããããŸãã
+- I2Væšè«ã®å Žåã¯ã`--image_path`ãš`--image_encoder`ãå¿
èŠã§ãã
+- `--video_size`ã¯çæããåç»ã®ãµã€ãºã§ãé«ããšå¹
ããã®é çªã§æå®ããŸãã
+- `--video_length`ã¯ã4ã®åæ°+1ããæå®ããŠãã ããã
+- `--prompt`: çæçšã®ããã³ããã§ãã
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ããå質ã¯ããäœäžããå¯èœæ§ããããŸãã
+- `--blocks_to_swap`ãªãã·ã§ã³ã§ãäžéšã®ãããã¯ãCPUã«ãªãããŒãã§ããŸãããªãããŒãå¯èœãªæå€§ãããã¯æ°ã¯51ã§ãã
+- `--vae_sample_size`ïŒããã©ã«ã128ïŒã§VAEã®ã¿ã€ãªã³ã°ãµã€ãºãå¶åŸ¡ããŸããVRAMãååãªå Žåã¯256ã«èšå®ãããšå質ãåäžããŸãã0ã«èšå®ãããšã¿ã€ãªã³ã°ãç¡å¹ã«ããŸãã
+- `--vae_enable_patch_conv`ã§VAEã®ãããããŒã¹ç³ã¿èŸŒã¿ãæå¹ã«ããã¡ã¢ãªãæé©åããŸãã
+- LoRAã®èªã¿èŸŒã¿ãªãã·ã§ã³ïŒ`--lora_weight`ã`--lora_multiplier`ã`--include_patterns`ã`--exclude_patterns`ïŒãå©çšå¯èœã§ããLyCORISããµããŒããããŠããŸãã
+- `--guidance_scale`ïŒããã©ã«ã6.0ïŒã¯ãclassifier-free guidanceã¹ã±ãŒã«ãå¶åŸ¡ããŸãã
+- `--flow_shift`ïŒããã©ã«ã7.0ïŒã¯ãdiscrete flow shiftãå¶åŸ¡ããŸãã
+- `--save_merged_model`ãªãã·ã§ã³ã¯ãLoRAã®éã¿ãããŒãžããåŸã«DiTã¢ãã«ãä¿åããããã®ãªãã·ã§ã³ã§ãããããæå®ãããšæšè«ã¯ã¹ããããããŸãã
+
+720p (1280x720) ãµã€ãºã§121ãã¬ãŒã ã®å Žåã`--blocks_to_swap 51`ãæå®ããŠãVRAM䜿çšéã¯çŽ20GBçšåºŠã«ãªããŸãã
+
+
diff --git a/docs/kandinsky5.md b/docs/kandinsky5.md
new file mode 100644
index 0000000000000000000000000000000000000000..d2f248682e2df6a1a358c7887b22f271f510a4d4
--- /dev/null
+++ b/docs/kandinsky5.md
@@ -0,0 +1,476 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# Kandinsky 5
+
+## Overview / æŠèŠ
+
+This is an unofficial training and inference script for [Kandinsky 5](https://github.com/ai-forever/Kandinsky-5). The features are as follows:
+
+- fp8 support and memory reduction by block swap
+- Inference without installing Flash attention (using PyTorch's scaled dot product attention)
+- LoRA training for text-to-video (T2V) and image-to-video (I2V, Pro) models
+
+This feature is experimental.
+
+
+æ¥æ¬èª
+
+[Kandinsky 5](https://github.com/ai-forever/Kandinsky-5) ã®éå
¬åŒã®åŠç¿ããã³æšè«ã¹ã¯ãªããã§ãã
+
+以äžã®ç¹åŸŽããããŸãïŒ
+
+- fp8察å¿ããã³block swapã«ããçã¡ã¢ãªå
+- Flash attentionã®ã€ã³ã¹ããŒã«ãªãã§ã®å®è¡ïŒPyTorchã®scaled dot product attentionã䜿çšïŒ
+- ããã¹ãããåç»ïŒT2VïŒããã³ç»åããåç»ïŒI2VãProïŒã¢ãã«ã®LoRAåŠç¿
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+Download the model weights from the [Kandinsky 5.0 Collection](https://huggingface.co/collections/ai-forever/kandinsky-50) on Hugging Face.
+
+### DiT Model / DiTã¢ãã«
+
+This document focuses on **Pro** models. The trainer also works with **Lite** models.
+æ¬ããã¥ã¡ã³ãã§ã¯ **Pro** ã¢ãã«ãäžå¿ã«èª¬æããŸããããã¬ãŒããŒã¯ **Lite** ã¢ãã«ã§ãåäœããŸãã
+
+Download a Pro DiT `.safetensors` checkpoint from the Kandinsky 5.0 Collection (e.g. `kandinsky5pro_t2v_pretrain_5s.safetensors` or `kandinsky5pro_i2v_sft_5s.safetensors`).
+
+### VAE
+
+Kandinsky 5 uses the HunyuanVideo 3D VAE. Download `diffusion_pytorch_model.safetensors` (or `pytorch_model.pt`) from:
+https://huggingface.co/hunyuanvideo-community/HunyuanVideo
+
+### Text Encoders / ããã¹ããšã³ã³ãŒã
+
+Kandinsky 5 uses Qwen2.5-VL-7B and CLIP for text encoding.
+
+**Qwen2.5-VL-7B**: Download from https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct (or use the path to your local Qwen/Qwen2.5-VL-7B-Instruct model)
+
+**CLIP**: Use the Hugging Face Transformers model `openai/clip-vit-large-patch14`.
+
+Pass either the model ID (e.g., `--text_encoder_clip openai/clip-vit-large-patch14`) or a path to the locally cached snapshot directory.
+
+### Directory Structure / ãã£ã¬ã¯ããªæ§é
+
+Place them in your chosen directory structure:
+
+```
+weights/
+âââ model/
+â âââ kandinsky5pro_t2v_pretrain_5s.safetensors
+âââ vae/
+â âââ diffusion_pytorch_model.safetensors
+âââ text_encoder/
+â âââ (Qwen2.5-VL-7B files)
+âââ text_encoder2/
+ âââ (openai/clip-vit-large-patch14 files)
+```
+
+
+æ¥æ¬èª
+
+Hugging Faceã®[Kandinsky 5.0 Collection](https://huggingface.co/collections/ai-forever/kandinsky-50)ããã¢ãã«ã®éã¿ãããŠã³ããŒãããŠãã ããã
+
+ãã®ããã¥ã¡ã³ã㯠**Proã¢ãã«** ãåæã«èª¬æããŠããŸãã
+
+**DiTã¢ãã«**: äžèšã®ãªããžããªãã`.safetensors`ãã¡ã€ã«ãããŠã³ããŒãããŠãã ããã
+
+**VAE**: Kandinsky 5ã¯HunyuanVideo 3D VAEã䜿çšããŸããäžèšãªã³ã¯ãã`diffusion_pytorch_model.safetensors`ïŒãŸãã¯`pytorch_model.pt`ïŒãããŠã³ããŒãããŠãã ããã
+
+**ããã¹ããšã³ã³ãŒã**: Qwen2.5-VL-7BãšCLIPã䜿çšããŸãã
+
+**Qwen2.5-VL-7B**: https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct ããããŠã³ããŒãããŠãã ããïŒãŸãã¯ããŒã«ã«ã® `Qwen/Qwen2.5-VL-7B-Instruct` ãæå®ããŸãïŒã
+
+**CLIP**: Hugging Face Transformersã® `openai/clip-vit-large-patch14` ã䜿çšããŠãã ããïŒã¢ãã«IDãŸãã¯ããŒã«ã«ã«ãã£ãã·ã¥ãããsnapshotãã£ã¬ã¯ããªãžã®ãã¹ãæå®ããŸãïŒã
+
+ä»»æã®ãã£ã¬ã¯ããªæ§é ã«é
眮ããŠãã ããã
+
+
+
+## List of Kandinsky 5 models / å©çšå¯èœãªã¿ã¹ã¯
+
+The `--task` option selects a model configuration (architecture, attention type, resolution, and default parameters).
+The DiT checkpoint must be set explicitly via `--dit` (this overrides the task's default checkpoint path).
+
+| # | Task | Checkpoint | Parameters | HF URL |
+|---|---|---|---|---|
+| 1 | k5-pro-t2v-5s-sd | kandinsky5pro_t2v_sft_5s.safetensors | T2V, 5s, 19B, Pro SFT | [kandinskylab/Kandinsky-5.0-T2V-Pro-sft-5s](https://huggingface.co/kandinskylab/Kandinsky-5.0-T2V-Pro-sft-5s) |
+| 2 | k5-pro-t2v-10s-sd | kandinsky5pro_t2v_sft_10s.safetensors | T2V, 10s, 19B, Pro SFT | [kandinskylab/Kandinsky-5.0-T2V-Pro-sft-10s](https://huggingface.co/kandinskylab/Kandinsky-5.0-T2V-Pro-sft-10s) |
+| 3 | k5-pro-i2v-5s-sd | kandinsky5pro_i2v_sft_5s.safetensors | I2V, 5s, 19B, Pro SFT | [kandinskylab/Kandinsky-5.0-I2V-Pro-sft-5s](https://huggingface.co/kandinskylab/Kandinsky-5.0-I2V-Pro-sft-5s) |
+| 4 | k5-pro-t2v-5s-sd | kandinsky5pro_t2v_pretrain_5s.safetensors | T2V, 5s, 19B, Pro Pretrain | [kandinskylab/Kandinsky-5.0-T2V-Pro-pretrain-5s](https://huggingface.co/kandinskylab/Kandinsky-5.0-T2V-Pro-pretrain-5s) |
+| 5 | k5-pro-t2v-10s-sd | kandinsky5pro_t2v_pretrain_10s.safetensors | T2V, 10s, 19B, Pro Pretrain | [kandinskylab/Kandinsky-5.0-T2V-Pro-pretrain-10s](https://huggingface.co/kandinskylab/Kandinsky-5.0-T2V-Pro-pretrain-10s) |
+
+[Kandinsky 5.0 Video Lite models](https://huggingface.co/collections/kandinskylab/kandinsky-50-video-lite) are technically supported, but were not extensively tested. Community feedback is welcome.
+
+[Kandinsky 5.0 Image Lite models](https://huggingface.co/collections/kandinskylab/kandinsky-50-image-lite) are not supported, but support can be implemented if they get active support from the community.
+
+
+æ¥æ¬èª
+
+`--task` ãªãã·ã§ã³ã§ã¿ã¹ã¯èšå®ïŒã¢ãŒããã¯ãã£ãattentionãè§£å床ãåçš®ããã©ã«ãå€ïŒãéžæããŸãã
+DiTã®ãã§ãã¯ãã€ã³ã㯠`--dit` ã§æç€ºçã«æå®ã§ããŸãïŒã¿ã¹ã¯ã®ããã©ã«ãã®ãã¹ãäžæžãããŸãïŒã
+
+Kandinsky 5.0 Video Liteã¢ãã«ïŒhttps://huggingface.co/collections/kandinskylab/kandinsky-50-video-liteïŒã¯æè¡çã«ã¯ãµããŒããããŠããŸãããååãªåäœç¢ºèªã¯ã§ããŠããŸãããåé¡ãããã°ãã£ãŒãããã¯ããé¡ãããŸãã
+
+Kandinsky 5.0 Image Liteã¢ãã«ïŒhttps://huggingface.co/collections/kandinskylab/kandinsky-50-image-liteïŒã¯çŸåšãµããŒãããŠããŸããããã³ãã¥ããã£ããã®ç¶ç¶çãªèŠæã»ååãããã°å¯Ÿå¿å¯èœã§ãã
+
+
+
+## Pre-caching / äºåãã£ãã·ã¥
+
+Pre-caching is required before training. This involves caching both latents and text encoder outputs.
+
+### Notes for Kandinsky5 / Kandinsky5ã®æ³šæç¹
+
+- You must cache **text encoder outputs** with `kandinsky5_cache_text_encoder_outputs.py` before training.
+- `--text_encoder_qwen` / `--text_encoder_clip` are Hugging Face Transformers models: pass a model ID (recommended) or a local HF snapshot directory.
+- For I2V tasks, the latent cache stores both first and last frame latents (`latents_image`, always two frames) when running `kandinsky5_cache_latents.py`âone cache works for both first-only and first+last conditioning.
+
+
+æ¥æ¬èª
+
+- åŠç¿åã«ã`kandinsky5_cache_text_encoder_outputs.py` ã«ãã **ããã¹ããšã³ã³ãŒãåºåã®ãã£ãã·ã¥** ãå¿
é ã§ãã
+- `--text_encoder_qwen` / `--text_encoder_clip` ã¯Hugging Face Transformersã®ã¢ãã«ã§ããã¢ãã«IDïŒæšå¥šïŒãŸãã¯ããŒã«ã«ã®HF snapshotãã£ã¬ã¯ããªãæå®ããŠãã ããã
+- I2Vã¿ã¹ã¯ã§ã¯ã`kandinsky5_cache_latents.py` å®è¡æã«æåãšæåŸã®ãã¬ãŒã latentïŒ`latents_image`ãåžžã«2ãã¬ãŒã ïŒããã£ãã·ã¥ãããŸãã1åã®ãã£ãã·ã¥ã§ first / first+last äž¡æ¹ã®ã¢ãŒãã«å¯Ÿå¿ã§ããŸãã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒãåºåã®äºåãã£ãã·ã¥
+
+Text encoder output pre-caching is required. Create the cache using the following command:
+
+```bash
+python kandinsky5_cache_text_encoder_outputs.py \
+ --dataset_config path/to/dataset.toml \
+ --text_encoder_qwen Qwen/Qwen2.5-VL-7B-Instruct \
+ --text_encoder_clip openai/clip-vit-large-patch14 \
+ --batch_size 4
+```
+
+Adjust `--batch_size` according to your available VRAM.
+
+For additional options, use `python kandinsky5_cache_text_encoder_outputs.py --help`.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒãåºåã®äºåãã£ãã·ã¥ã¯å¿
é ã§ããäžã®ã³ãã³ãäŸã䜿çšããŠãã£ãã·ã¥ãäœæããŠãã ããã
+
+䜿çšå¯èœãªVRAMã«åãã㊠`--batch_size` ã調æŽããŠãã ããã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯ `--help` ã§ç¢ºèªã§ããŸãã
+
+
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã¥
+
+Latent pre-caching is required. Create the cache using the following command:
+
+```bash
+python kandinsky5_cache_latents.py \
+ --dataset_config path/to/dataset.toml \
+ --vae path/to/vae/diffusion_pytorch_model.safetensors
+```
+
+For NABLA training, you may want to build NABLA-compatible latent caches:
+
+```bash
+python kandinsky5_cache_latents.py \
+ --dataset_config path/to/dataset.toml \
+ --vae path/to/vae/diffusion_pytorch_model.safetensors \
+ --nabla_resize
+```
+
+If you're running low on VRAM, lower the `--batch_size`.
+
+For additional options, use `python kandinsky5_cache_latents.py --help`.
+
+
+æ¥æ¬èª
+
+latentã®äºåãã£ãã·ã¥ã¯å¿
é ã§ããäžã®ã³ãã³ãäŸã䜿çšããŠãã£ãã·ã¥ãäœæããŠãã ããã
+
+VRAMãè¶³ããªãå Žåã¯ã`--batch_size`ãå°ããããŠãã ããã
+
+NABLAã§åŠç¿ããå Žåã¯ãNABLAäºæã®latentãã£ãã·ã¥ãäœæããããšãæšå¥šããŸãïŒ
+
+```bash
+python kandinsky5_cache_latents.py \
+ --dataset_config path/to/dataset.toml \
+ --vae path/to/vae/diffusion_pytorch_model.safetensors \
+ --nabla_resize
+```
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯ `--help` ã§ç¢ºèªã§ããŸãã
+
+
+
+## Training / åŠç¿
+
+Start training using the following command (input as a single line):
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 \
+ kandinsky5_train_network.py \
+ --mixed_precision bf16 \
+ --dataset_config path/to/dataset.toml \
+ --task k5-pro-t2v-5s-sd \
+ --dit path/to/kandinsky5pro_t2v_pretrain_5s.safetensors \
+ --text_encoder_qwen Qwen/Qwen2.5-VL-7B-Instruct \
+ --text_encoder_clip openai/clip-vit-large-patch14 \
+ --vae path/to/vae/diffusion_pytorch_model.safetensors \
+ --fp8_base \
+ --sdpa \
+ --gradient_checkpointing \
+ --max_data_loader_n_workers 1 \
+ --persistent_data_loader_workers \
+ --learning_rate 1e-4 \
+ --optimizer_type AdamW8Bit \
+ --optimizer_args "weight_decay=0.001" "betas=(0.9,0.95)" \
+ --max_grad_norm 1.0 \
+ --lr_scheduler constant_with_warmup \
+ --lr_warmup_steps 100 \
+ --network_module networks.lora_kandinsky \
+ --network_dim 32 \
+ --network_alpha 32 \
+ --timestep_sampling shift \
+ --discrete_flow_shift 5.0 \
+ --output_dir path/to/output \
+ --output_name k5_lora \
+ --save_every_n_epochs 1 \
+ --max_train_epochs 50 \
+ --scheduler_scale 10.0
+```
+
+For I2V training, switch the task and checkpoint to an I2V preset (e.g., `k5-pro-i2v-5s-sd` with `kandinsky5pro_i2v_sft_5s.safetensors`). The latent cache already stores first and last frame latents (`latents_image`, two frames) when you run `kandinsky5_cache_latents.py`, so the same cache covers both first-only and first+last modesâno extra flags are needed beyond picking an I2V task.
+
+**Note on first+last frame conditioning**: First+last frame training support is experimental. The effectiveness and plausibility of this approach have not yet been thoroughly tested. Feedback and results from community testing are welcome.
+
+The training settings are experimental. Appropriate learning rates, training steps, timestep distribution, etc. are not yet fully determined. Feedback is welcome.
+
+For additional options, use `python kandinsky5_train_network.py --help`.
+
+### Key Options / äž»èŠãªãã·ã§ã³
+
+- `--task`: Model configuration (architecture, attention type, resolution, sampling parameters). See Available Tasks above.
+- `--dit`: Path to DiT checkpoint. **Overrides the task's default checkpoint path.** You can use any compatible checkpoint (SFT, pretrain, or your own) with any task config as long as the architecture matches.
+- `--vae`: Path to VAE checkpoint (overrides task default)
+- `--network_module`: Use `networks.lora_kandinsky` for Kandinsky5 LoRA
+
+**Note**: The `--task` option only sets the model architecture and parameters, not the weights. Use `--dit` to specify which checkpoint to load.
+
+**泚æ**: `--task`ãªãã·ã§ã³ã¯ã¢ãã«ã®ã¢ãŒããã¯ãã£ãšãã©ã¡ãŒã¿ã®ã¿ãèšå®ããéã¿ã¯èšå®ããŸããã`--dit`ã§èªã¿èŸŒããã§ãã¯ãã€ã³ããæå®ããŠãã ããã
+
+### Memory Optimization / ã¡ã¢ãªæé©å
+
+`--gradient_checkpointing` enables gradient checkpointing to reduce VRAM usage.
+
+`--fp8_base` runs DiT in fp8 mode. This can significantly reduce memory consumption but may impact output quality.
+
+If you're running low on VRAM, use `--blocks_to_swap` to offload some blocks to CPU.
+
+`--gradient_checkpointing_cpu_offload` can be used to offload activations to CPU when using gradient checkpointing. This must be used together with `--gradient_checkpointing`.
+
+### Attention / ã¢ãã³ã·ã§ã³
+
+Use `--sdpa`, `--flash_attn`, `--flash3`, `--sage_attn`, or `--xformers` to control the attention backend for Kandinsky5.
+
+### Kandinsky5-specific Options / Kandinsky5åºæãªãã·ã§ã³
+
+- `--scheduler_scale`: Overrides the task's scheduler scaling factor. This affects the timestep schedule used in sampling/inference and is also stored in the task config used during training.
+- `--offload_dit_during_sampling`: Offloads the DiT model to CPU during sampling (sample generation during training, and in `kandinsky5_generate_video.py`) to reduce peak VRAM usage.
+- `--i` / `--image`: Init image path for i2v-style seeding in `kandinsky5_generate_video.py`.
+
+**NABLA attention (training):**
+
+- `--force_nabla_attention`: Force NABLA attention regardless of the task default.
+- `--nabla_method`: NABLA binarization method (default `topcdf`).
+- `--nabla_P`: CDF threshold (default `0.9`).
+- `--nabla_wT`, `--nabla_wH`, `--nabla_wW`: STA window sizes (defaults `11`, `3`, `3`).
+- `--nabla_add_sta` / `--no_nabla_add_sta`: Enable/disable STA prior when forcing NABLA.
+
+**NABLA-compatible latent caching:**
+
+- `kandinsky5_cache_latents.py --nabla_resize`: Resizes inputs to the next multiple of 128 before VAE encoding, which helps produce latents compatible with NABLA geometry constraints.
+
+### Sample Generation During Training / åŠç¿äžã®ãµã³ãã«çæ
+
+Sample generation during training is supported. See [sampling during training](./sampling_during_training.md) for details.
+
+
+æ¥æ¬èª
+
+äžã®ã³ãã³ãäŸã䜿çšããŠåŠç¿ãéå§ããŠãã ããïŒå®éã«ã¯äžè¡ã§å
¥åïŒã
+
+æ¥æ¬èªã»ã¯ã·ã§ã³ã®äŸïŒè±èªã»ã¯ã·ã§ã³ãšåãå
容ïŒïŒ
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 \
+ kandinsky5_train_network.py \
+ --mixed_precision bf16 \
+ --dataset_config path/to/dataset.toml \
+ --task k5-pro-t2v-5s-sd \
+ --dit path/to/kandinsky5pro_t2v_pretrain_5s.safetensors \
+ --text_encoder_qwen Qwen/Qwen2.5-VL-7B-Instruct \
+ --text_encoder_clip openai/clip-vit-large-patch14 \
+ --vae path/to/vae/diffusion_pytorch_model.safetensors \
+ --fp8_base \
+ --sdpa \
+ --gradient_checkpointing \
+ --max_data_loader_n_workers 1 \
+ --persistent_data_loader_workers \
+ --learning_rate 1e-4 \
+ --optimizer_type AdamW8Bit \
+ --optimizer_args "weight_decay=0.001" "betas=(0.9,0.95)" \
+ --max_grad_norm 1.0 \
+ --lr_scheduler constant_with_warmup \
+ --lr_warmup_steps 100 \
+ --network_module networks.lora_kandinsky \
+ --network_dim 32 \
+ --network_alpha 32 \
+ --timestep_sampling shift \
+ --discrete_flow_shift 5.0 \
+ --output_dir path/to/output \
+ --output_name k5_lora \
+ --save_every_n_epochs 1 \
+ --max_train_epochs 50 \
+ --scheduler_scale 10.0
+```
+
+I2Vã®åŠç¿ãè¡ãå Žåã¯ãã¿ã¹ã¯ãšãã§ãã¯ãã€ã³ããI2Våãããªã»ããã«å€æŽããŠãã ããïŒäŸ: `k5-pro-i2v-5s-sd` ãš `kandinsky5pro_i2v_sft_5s.safetensors`ïŒã`kandinsky5_cache_latents.py` ã§latentããã£ãã·ã¥ããéã«ãæåã®ãã¬ãŒã latentïŒ`latents_image`ïŒãä¿åããããããI2Vå°çšã®è¿œå ãã©ã°ã¯äžèŠã§ãïŒI2Vã¿ã¹ã¯ãéžã¶ã ãã§åäœããŸãïŒã
+
+**æåãšæåŸã®ãã¬ãŒã æ¡ä»¶ä»ãã«ã€ããŠ**: æåãšæåŸã®ãã¬ãŒã åŠç¿ãµããŒãã¯å®éšçãªãã®ã§ãããã®ã¢ãããŒãã®æå¹æ§ãšåŠ¥åœæ§ã¯ãŸã ååã«ãã¹ããããŠããŸãããã³ãã¥ããã£ããã®ãã£ãŒãããã¯ãšçµæããåŸ
ã¡ããŠããŸãã
+
+åŠç¿èšå®ã¯å®éšçãªãã®ã§ããé©åãªåŠç¿çãåŠç¿ã¹ãããæ°ãã¿ã€ã ã¹ãããã®ååžãªã©ã¯ããŸã å®å
šã«ã¯æ±ºãŸã£ãŠããŸããããã£ãŒãããã¯ããåŸ
ã¡ããŠããŸãã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯ `--help` ã§ç¢ºèªã§ããŸãã
+
+**äž»èŠãªãã·ã§ã³**
+
+- `--task`: ã¢ãã«èšå®ïŒäžèšã®å©çšå¯èœãªã¿ã¹ã¯ãåç
§ïŒ
+- `--dit`: DiTãã§ãã¯ãã€ã³ããžã®ãã¹ïŒã¿ã¹ã¯ã®ããã©ã«ããäžæžãïŒ
+- `--vae`: VAEãã§ãã¯ãã€ã³ããžã®ãã¹ïŒã¿ã¹ã¯ã®ããã©ã«ããäžæžãïŒ
+- `--network_module`: Kandinsky5 LoRAã«ã¯ `networks.lora_kandinsky` ã䜿çš
+
+**ã¡ã¢ãªæé©å**
+
+`--gradient_checkpointing`ã§gradient checkpointingãæå¹ã«ããVRAM䜿çšéãåæžã§ããŸãã
+
+`--fp8_base`ãæå®ãããšãDiTãfp8ã§åŠç¿ãããŸããæ¶è²»ã¡ã¢ãªã倧ããåæžã§ããŸãããå質ã¯äœäžããå¯èœæ§ããããŸãã
+
+VRAMãè¶³ããªãå Žåã¯ã`--blocks_to_swap`ãæå®ããŠãäžéšã®ãããã¯ãCPUã«ãªãããŒãããŠãã ããã
+
+`--gradient_checkpointing_cpu_offload`ãæå®ãããšãgradient checkpointingäœ¿çšæã«ã¢ã¯ãã£ããŒã·ã§ã³ãCPUã«ãªãããŒãããŸãã`--gradient_checkpointing`ãšäœµçšããå¿
èŠããããŸãã
+
+**ã¢ãã³ã·ã§ã³**
+
+`--sdpa`/`--flash_attn`/`--flash3`/`--sage_attn`/`--xformers`ã¯Kandinsky5ã®attention backendã«é©çšãããŸãã
+
+**Kandinsky5åºæãªãã·ã§ã³**
+
+- `--scheduler_scale`: ã¿ã¹ã¯ã®`scheduler_scale`ãäžæžãããŸãããµã³ããªã³ã°/æšè«ã§äœ¿ãã¿ã€ã ã¹ãããã¹ã±ãžã¥ãŒã«ã«åœ±é¿ããŸãã
+- `--offload_dit_during_sampling`: ãµã³ãã«çææïŒåŠç¿äžã®ãµã³ããªã³ã°ãããã³ `kandinsky5_generate_video.py`ïŒã«DiTãCPUãžéé¿ããããŒã¯VRAMãäžããŸãã
+- `--i` / `--image`: `kandinsky5_generate_video.py` ã§i2v颚ã®åæç»åïŒ1ãã¬ãŒã ç®ã®ã·ãŒãïŒãæå®ããŸãã
+
+**NABLAã¢ãã³ã·ã§ã³ïŒåŠç¿ïŒ**
+
+- `--force_nabla_attention`: ã¿ã¹ã¯èšå®ã«é¢ä¿ãªãNABLAã匷å¶ããŸãã
+- `--nabla_method`: NABLAã®äºå€åã¡ãœããïŒããã©ã«ã `topcdf`ïŒã
+- `--nabla_P`: CDFãããå€ïŒããã©ã«ã `0.9`ïŒã
+- `--nabla_wT`, `--nabla_wH`, `--nabla_wW`: STAãŠã£ã³ããŠïŒããã©ã«ã `11`, `3`, `3`ïŒã
+- `--nabla_add_sta` / `--no_nabla_add_sta`: STA priorã®æå¹/ç¡å¹ã
+
+**NABLAäºælatentãã£ãã·ã¥**
+
+- `kandinsky5_cache_latents.py --nabla_resize`: VAEãšã³ã³ãŒãåã«å
¥åã128ã®åæ°ãžãªãµã€ãºããNABLAã®å¹Ÿäœæ¡ä»¶ã«åãlatentãçæããããããŸãã
+
+**åŠç¿äžã®ãµã³ãã«çæ**
+
+åŠç¿äžã®ãµã³ãã«çæããµããŒããããŠããŸãã詳现ã¯[åŠç¿äžã®ãµã³ããªã³ã°](./sampling_during_training.md)ãåç
§ããŠãã ããã
+
+
+
+## Inference / æšè«
+
+Generate videos using the following command:
+
+```bash
+python kandinsky5_generate_video.py \
+ --task k5-pro-t2v-5s-sd \
+ --dit path/to/kandinsky5pro_t2v_pretrain_5s.safetensors \
+ --vae path/to/vae/diffusion_pytorch_model.safetensors \
+ --text_encoder_qwen Qwen/Qwen2.5-VL-7B-Instruct \
+ --text_encoder_clip openai/clip-vit-large-patch14 \
+ --offload_dit_during_sampling \
+ --fp8_base \
+ --dtype bfloat16 \
+ --prompt "A cat walks on the grass, realistic style." \
+ --negative_prompt "low quality, artifacts" \
+ --frames 17 \
+ --steps 50 \
+ --guidance 5 \
+ --scheduler_scale 10 \
+ --seed 42 \
+ --width 512 \
+ --height 512 \
+ --output path/to/output.mp4 \
+ --lora_weight path/to/lora.safetensors \
+ --lora_multiplier 1.0
+```
+
+### Options / ãªãã·ã§ã³
+
+- `--task`: Model configuration
+- `--prompt`: Text prompt for generation
+- `--negative_prompt`: Negative prompt (optional)
+- `--output`: Output file path (.mp4 for video, .png for image)
+- `--width`, `--height`: Output resolution (defaults from task config)
+- `--frames`: Number of frames (defaults from task config)
+- `--steps`: Number of inference steps (defaults from task config)
+- `--guidance`: Guidance scale (defaults from task config)
+- `--seed`: Random seed
+- `--fp8_base`: Run DiT in fp8 mode
+- `--blocks_to_swap`: Number of blocks to offload to CPU
+- `--lora_weight`: Path(s) to LoRA weight file(s)
+- `--lora_multiplier`: LoRA multiplier(s)
+
+For additional options, use `python kandinsky5_generate_video.py --help`.
+
+
+æ¥æ¬èª
+
+äžã®ã³ãã³ãäŸã䜿çšããŠåç»ãçæããŸãã
+
+**ãªãã·ã§ã³**
+
+- `--task`: ã¢ãã«èšå®
+- `--prompt`: çæçšã®ããã¹ãããã³ãã
+- `--negative_prompt`: ãã¬ãã£ãããã³ããïŒãªãã·ã§ã³ïŒ
+- `--output`: åºåãã¡ã€ã«ãã¹ïŒåç»ã¯.mp4ãç»åã¯.pngïŒ
+- `--width`, `--height`: åºåè§£å床ïŒã¿ã¹ã¯èšå®ããã®ããã©ã«ãïŒ
+- `--frames`: ãã¬ãŒã æ°ïŒã¿ã¹ã¯èšå®ããã®ããã©ã«ãïŒ
+- `--steps`: æšè«ã¹ãããæ°ïŒã¿ã¹ã¯èšå®ããã®ããã©ã«ãïŒ
+- `--guidance`: ã¬ã€ãã³ã¹ã¹ã±ãŒã«ïŒã¿ã¹ã¯èšå®ããã®ããã©ã«ãïŒ
+- `--seed`: ã©ã³ãã ã·ãŒã
+- `--fp8_base`: DiTãfp8ã¢ãŒãã§å®è¡
+- `--blocks_to_swap`: CPUã«ãªãããŒããããããã¯æ°
+- `--lora_weight`: LoRAéã¿ãã¡ã€ã«ãžã®ãã¹
+- `--lora_multiplier`: LoRAä¿æ°
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯ `--help` ã§ç¢ºèªã§ããŸãã
+
+
+
+## Dataset Configuration / ããŒã¿ã»ããèšå®
+
+Dataset configuration is the same as other architectures. See [dataset configuration](./dataset_config.md) for details.
+
+
+æ¥æ¬èª
+
+ããŒã¿ã»ããèšå®ã¯ä»ã®ã¢ãŒããã¯ãã£ãšåãã§ãã詳现ã¯[ããŒã¿ã»ããèšå®](./dataset_config.md)ãåç
§ããŠãã ããã
+
+
diff --git a/docs/loha_lokr.md b/docs/loha_lokr.md
new file mode 100644
index 0000000000000000000000000000000000000000..ff46ae6506241b2d636432b01f2a52beeacdbf39
--- /dev/null
+++ b/docs/loha_lokr.md
@@ -0,0 +1,341 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# LoHa / LoKr (LyCORIS)
+
+## Overview / æŠèŠ
+
+In addition to standard LoRA, Musubi Tuner supports **LoHa** (Low-rank Hadamard Product) and **LoKr** (Low-rank Kronecker Product) as alternative parameter-efficient fine-tuning methods. These are based on techniques from the [LyCORIS](https://github.com/KohakuBlueleaf/LyCORIS) project.
+
+- **LoHa**: Represents weight updates as a Hadamard (element-wise) product of two low-rank matrices. Reference: [FedPara (arXiv:2108.06098)](https://arxiv.org/abs/2108.06098)
+- **LoKr**: Represents weight updates as a Kronecker product with optional low-rank decomposition. Reference: [LoKr (arXiv:2309.14859)](https://arxiv.org/abs/2309.14859)
+
+The algorithms and recommended settings are described in the [LyCORIS documentation](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Algo-List.md) and [guidelines](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Guidelines.md).
+
+Both methods target Linear layers only (Conv2d layers are not supported in this implementation).
+
+This feature is experimental.
+
+
+æ¥æ¬èª
+
+Musubi Tunerã§ã¯ãæšæºçãªLoRAã«å ãã代æ¿ã®ãã©ã¡ãŒã¿å¹çã®è¯ããã¡ã€ã³ãã¥ãŒãã³ã°ææ³ãšã㊠**LoHa**ïŒLow-rank Hadamard ProductïŒãš **LoKr**ïŒLow-rank Kronecker ProductïŒããµããŒãããŠããŸããããã㯠[LyCORIS](https://github.com/KohakuBlueleaf/LyCORIS) ãããžã§ã¯ãã®ææ³ã«åºã¥ããŠããŸãã
+
+- **LoHa**: éã¿ã®æŽæ°ã2ã€ã®äœã©ã³ã¯è¡åã®Hadamardç©ïŒèŠçŽ ããšã®ç©ïŒã§è¡šçŸããŸããåèæç®: [FedPara (arXiv:2108.06098)](https://arxiv.org/abs/2108.06098)
+- **LoKr**: éã¿ã®æŽæ°ãKroneckerç©ãšããªãã·ã§ã³ã®äœã©ã³ã¯åè§£ã§è¡šçŸããŸããåèæç®: [LoKr (arXiv:2309.14859)](https://arxiv.org/abs/2309.14859)
+
+ã¢ã«ãŽãªãºã ãšæšå¥šèšå®ã¯[LyCORISã®ã¢ã«ãŽãªãºã 解説](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Algo-List.md)ãš[ã¬ã€ãã©ã€ã³](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Guidelines.md)ãåç
§ããŠãã ããã
+
+ããããLinearå±€ã®ã¿ã察象ãšããŠããŸãïŒConv2då±€ã¯ãã®å®è£
ã§ã¯ãµããŒãããŠããŸããïŒã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+
+
+## Acknowledgments / è¬èŸ
+
+The LoHa and LoKr implementations in Musubi Tuner are based on the [LyCORIS](https://github.com/KohakuBlueleaf/LyCORIS) project by [KohakuBlueleaf](https://github.com/KohakuBlueleaf). We would like to express our sincere gratitude for the excellent research and open-source contributions that made this implementation possible.
+
+
+æ¥æ¬èª
+
+Musubi Tunerã®LoHaããã³LoKrã®å®è£
ã¯ã[KohakuBlueleaf](https://github.com/KohakuBlueleaf)æ°ã«ãã[LyCORIS](https://github.com/KohakuBlueleaf/LyCORIS)ãããžã§ã¯ãã«åºã¥ããŠããŸãããã®å®è£
ãå¯èœã«ããŠãã ãã£ãçŽ æŽãããç ç©¶ãšãªãŒãã³ãœãŒã¹ãžã®è²¢ç®ã«å¿ããæè¬ããããŸãã
+
+
+
+## Supported architectures / 察å¿ã¢ãŒããã¯ãã£
+
+LoHa and LoKr automatically detect the model architecture and apply appropriate default settings. The following architectures are supported:
+
+- HunyuanVideo
+- HunyuanVideo 1.5
+- Wan 2.1/2.2
+- FramePack
+- FLUX.1 Kontext / FLUX.2
+- Qwen-Image series
+- Z-Image
+
+Kandinsky5 is **not supported** with LoHa/LoKr (it requires special handling that is incompatible with automatic architecture detection).
+
+Each architecture has its own default `exclude_patterns` to skip non-trainable modules (e.g., modulation layers, normalization layers). These are applied automatically when using LoHa/LoKr.
+
+
+æ¥æ¬èª
+
+LoHaãšLoKrã¯ãã¢ãã«ã®ã¢ãŒããã¯ãã£ãèªåã§æ€åºããé©åãªããã©ã«ãèšå®ãé©çšããŸãã以äžã®ã¢ãŒããã¯ãã£ã«å¯Ÿå¿ããŠããŸã:
+
+- HunyuanVideo
+- HunyuanVideo 1.5
+- Wan 2.1/2.2
+- FramePack
+- FLUX.1 Kontext / FLUX.2
+- Qwen-Imageç³»
+- Z-Image
+
+Kandinsky5ã¯LoHa/LoKrã« **察å¿ããŠããŸãã**ïŒèªåã¢ãŒããã¯ãã£æ€åºãšäºææ§ã®ãªãç¹æ®ãªåŠçãå¿
èŠã§ãïŒã
+
+åã¢ãŒããã¯ãã£ã«ã¯ãåŠç¿å¯Ÿè±¡å€ã®ã¢ãžã¥ãŒã«ïŒmodulationå±€ãnormalizationå±€ãªã©ïŒãã¹ãããããããã©ã«ãã® `exclude_patterns` ãèšå®ãããŠããŸããLoHa/LoKräœ¿çšæã«ã¯ããããèªåçã«é©çšãããŸãã
+
+
+
+## Training / åŠç¿
+
+To use LoHa or LoKr, change the `--network_module` argument in your training command. All other training options (dataset config, optimizer, etc.) remain the same as LoRA.
+
+
+æ¥æ¬èª
+
+LoHaãŸãã¯LoKrã䜿çšããã«ã¯ãåŠç¿ã³ãã³ãã® `--network_module` åŒæ°ã倿ŽããŸãããã®ä»ã®åŠç¿ãªãã·ã§ã³ïŒããŒã¿ã»ããèšå®ããªããã£ãã€ã¶ãªã©ïŒã¯LoRAãšåãã§ãã
+
+
+
+### LoHa
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py \
+ --dit path/to/dit \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 --fp8_base \
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing \
+ --network_module networks.loha --network_dim 32 --network_alpha 16 \
+ --max_train_epochs 16 --save_every_n_epochs 1 \
+ --output_dir path/to/output --output_name my-loha
+```
+
+### LoKr
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/hv_train_network.py \
+ --dit path/to/dit \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 --fp8_base \
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing \
+ --network_module networks.lokr --network_dim 32 --network_alpha 16 \
+ --max_train_epochs 16 --save_every_n_epochs 1 \
+ --output_dir path/to/output --output_name my-lokr
+```
+
+Replace `hv_train_network.py` with the appropriate training script for your architecture (e.g., `wan_train_network.py`, `fpack_train_network.py`, etc.).
+
+
+æ¥æ¬èª
+
+`hv_train_network.py` ã®éšåã¯ãã䜿ãã®ã¢ãŒããã¯ãã£ã«å¯Ÿå¿ããåŠç¿ã¹ã¯ãªããïŒ`wan_train_network.py`, `fpack_train_network.py` ãªã©ïŒã«çœ®ãæããŠãã ããã
+
+
+
+### Common training options / å
±éã®åŠç¿ãªãã·ã§ã³
+
+The following `--network_args` options are available for both LoHa and LoKr, same as LoRA:
+
+| Option | Description |
+|---|---|
+| `verbose=True` | Display detailed information about the network modules |
+| `rank_dropout=0.1` | Apply dropout to the rank dimension during training |
+| `module_dropout=0.1` | Randomly skip entire modules during training |
+| `exclude_patterns=[r'...']` | Exclude modules matching the regex patterns (in addition to architecture defaults) |
+| `include_patterns=[r'...']` | Include only modules matching the regex patterns |
+
+See [Advanced configuration](advanced_config.md) for details on how to specify `network_args`.
+
+
+æ¥æ¬èª
+
+以äžã® `--network_args` ãªãã·ã§ã³ã¯ãLoRAãšåæ§ã«LoHaãšLoKrã®äž¡æ¹ã§äœ¿çšã§ããŸã:
+
+| ãªãã·ã§ã³ | 説æ |
+|---|---|
+| `verbose=True` | ãããã¯ãŒã¯ã¢ãžã¥ãŒã«ã®è©³çްæ
å ±ã衚瀺 |
+| `rank_dropout=0.1` | åŠç¿æã«ã©ã³ã¯æ¬¡å
ã«ããããã¢ãŠããé©çš |
+| `module_dropout=0.1` | åŠç¿æã«ã¢ãžã¥ãŒã«å
šäœãã©ã³ãã ã«ã¹ããã |
+| `exclude_patterns=[r'...']` | æ£èŠè¡šçŸãã¿ãŒã³ã«äžèŽããã¢ãžã¥ãŒã«ãé€å€ïŒã¢ãŒããã¯ãã£ã®ããã©ã«ãã«è¿œå ïŒ |
+| `include_patterns=[r'...']` | æ£èŠè¡šçŸãã¿ãŒã³ã«äžèŽããã¢ãžã¥ãŒã«ã®ã¿ã察象ãšãã |
+
+`network_args` ã®æå®æ¹æ³ã®è©³çŽ°ã¯ [é«åºŠãªèšå®](advanced_config.md) ãåç
§ããŠãã ããã
+
+
+
+### LoKr-specific option: `factor` / LoKråºæã®ãªãã·ã§ã³: `factor`
+
+LoKr decomposes weight dimensions using factorization. The `factor` option controls how dimensions are split:
+
+- `factor=-1` (default): Automatically find balanced factors. For example, dimension 512 is split into (16, 32).
+- `factor=N` (positive integer): Force factorization using the specified value. For example, `factor=4` splits dimension 512 into (4, 128).
+
+```bash
+--network_args "factor=4"
+```
+
+When `network_dim` (rank) is large enough relative to the factorized dimensions, LoKr uses a full matrix instead of a low-rank decomposition for the second factor. A warning will be logged in this case.
+
+
+æ¥æ¬èª
+
+LoKrã¯éã¿ã®æ¬¡å
ãå æ°åè§£ããŠåå²ããŸãã`factor` ãªãã·ã§ã³ã§ãã®å岿¹æ³ãå¶åŸ¡ããŸã:
+
+- `factor=-1`ïŒããã©ã«ãïŒ: ãã©ã³ã¹ã®è¯ãå æ°ãèªåçã«èŠã€ããŸããäŸãã°ã次å
512ã¯(16, 32)ã«åå²ãããŸãã
+- `factor=N`ïŒæ£ã®æŽæ°ïŒ: æå®ããå€ã§å æ°åè§£ããŸããäŸãã°ã`factor=4` ã¯æ¬¡å
512ã(4, 128)ã«åå²ããŸãã
+
+```bash
+--network_args "factor=4"
+```
+
+`network_dim`ïŒã©ã³ã¯ïŒãå æ°åè§£ãããæ¬¡å
ã«å¯ŸããŠååã«å€§ããå ŽåãLoKrã¯ç¬¬2å åã«äœã©ã³ã¯åè§£ã§ã¯ãªããã«è¡åã䜿çšããŸãããã®å ŽåãèŠåããã°ã«åºåãããŸãã
+
+
+
+## How LoHa and LoKr work / LoHaãšLoKrã®ä»çµã¿
+
+### LoHa
+
+LoHa represents the weight update as a Hadamard (element-wise) product of two low-rank matrices:
+
+```
+ÎW = (W1a à W1b) â (W2a à W2b)
+```
+
+where `W1a`, `W1b`, `W2a`, `W2b` are low-rank matrices with rank `network_dim`. This means LoHa has roughly **twice the number of trainable parameters** compared to LoRA at the same rank, but can capture more complex weight structures due to the element-wise product.
+
+### LoKr
+
+LoKr represents the weight update using a Kronecker product:
+
+```
+ÎW = W1 â W2 (where W2 = W2a à W2b in low-rank mode)
+```
+
+The original weight dimensions are factorized (e.g., a 512Ã512 weight might be split so that W1 is 16Ã16 and W2 is 32Ã32). W1 is always a full matrix (small), while W2 can be either low-rank decomposed or a full matrix depending on the rank setting. LoKr tends to produce **smaller models** compared to LoRA at the same rank.
+
+
+æ¥æ¬èª
+
+### LoHa
+
+LoHaã¯éã¿ã®æŽæ°ã2ã€ã®äœã©ã³ã¯è¡åã®Hadamardç©ïŒèŠçŽ ããšã®ç©ïŒã§è¡šçŸããŸã:
+
+```
+ÎW = (W1a à W1b) â (W2a à W2b)
+```
+
+ããã§ `W1a`, `W1b`, `W2a`, `W2b` ã¯ã©ã³ã¯ `network_dim` ã®äœã©ã³ã¯è¡åã§ããLoHaã¯åãã©ã³ã¯ã®LoRAãšæ¯èŒããŠåŠç¿å¯èœãªãã©ã¡ãŒã¿æ°ã **çŽ2å** ã«ãªããŸãããèŠçŽ ããšã®ç©ã«ãããããè€éãªéã¿æ§é ãæããããšãã§ããŸãã
+
+### LoKr
+
+LoKrã¯Kroneckerç©ã䜿ã£ãŠéã¿ã®æŽæ°ã衚çŸããŸã:
+
+```
+ÎW = W1 â W2 ïŒäœã©ã³ã¯ã¢ãŒãã§ã¯ W2 = W2a à W2bïŒ
+```
+
+å
ã®éã¿ã®æ¬¡å
ãå æ°åè§£ãããŸãïŒäŸ: 512Ã512ã®éã¿ããW1ã16Ã16ãW2ã32Ã32ã«åå²ãããŸãïŒãW1ã¯åžžã«ãã«è¡åïŒå°ããïŒã§ãW2ã¯ã©ã³ã¯èšå®ã«å¿ããŠäœã©ã³ã¯åè§£ãŸãã¯ãã«è¡åã«ãªããŸããLoKrã¯åãã©ã³ã¯ã®LoRAãšæ¯èŒã㊠**ããå°ããã¢ãã«** ãçæããåŸåããããŸãã
+
+
+
+## Inference / æšè«
+
+Trained LoHa/LoKr weights are saved in safetensors format, just like LoRA. The inference method depends on the architecture.
+
+
+æ¥æ¬èª
+
+åŠç¿æžã¿ã®LoHa/LoKrã®éã¿ã¯ãLoRAãšåæ§ã«safetensors圢åŒã§ä¿åãããŸããæšè«æ¹æ³ã¯ã¢ãŒããã¯ãã£ã«ãã£ãŠç°ãªããŸãã
+
+
+
+### Architectures with built-in support / ãã€ãã£ããµããŒãã®ããã¢ãŒããã¯ãã£
+
+The following architectures automatically detect and load LoHa/LoKr weights without any additional options:
+
+- Wan 2.1/2.2
+- FramePack
+- HunyuanVideo 1.5
+- FLUX.2
+- Qwen-Image series
+- Z-Image
+
+Use `--lora_weight` as usual:
+
+```bash
+python src/musubi_tuner/wan_generate_video.py ... --lora_weight path/to/loha_or_lokr.safetensors
+```
+
+
+æ¥æ¬èª
+
+以äžã®ã¢ãŒããã¯ãã£ã§ã¯ãLoHa/LoKrã®éã¿ã远å ãªãã·ã§ã³ãªãã§èªåæ€åºããŠèªã¿èŸŒã¿ãŸã:
+
+- Wan 2.1/2.2
+- FramePack
+- HunyuanVideo 1.5
+- FLUX.2
+- Qwen-Imageç³»
+- Z-Image
+
+éåžžéã `--lora_weight` ã䜿çšããŸã:
+
+```bash
+python src/musubi_tuner/wan_generate_video.py ... --lora_weight path/to/loha_or_lokr.safetensors
+```
+
+
+
+### HunyuanVideo / FLUX.1 Kontext
+
+For HunyuanVideo and FLUX.1 Kontext, the `--lycoris` option is required, and the [LyCORIS library](https://github.com/KohakuBlueleaf/LyCORIS) must be installed:
+
+```bash
+pip install lycoris-lora
+
+python src/musubi_tuner/hv_generate_video.py ... --lora_weight path/to/loha_or_lokr.safetensors --lycoris
+```
+
+
+æ¥æ¬èª
+
+HunyuanVideoãšFLUX.1 Kontextã§ã¯ã`--lycoris` ãªãã·ã§ã³ãå¿
èŠã§ã[LyCORIS ã©ã€ãã©ãª](https://github.com/KohakuBlueleaf/LyCORIS)ã®ã€ã³ã¹ããŒã«ãå¿
èŠã§ã:
+
+```bash
+pip install lycoris-lora
+
+python src/musubi_tuner/hv_generate_video.py ... --lora_weight path/to/loha_or_lokr.safetensors --lycoris
+```
+
+
+
+## Limitations / å¶éäºé
+
+### LoRA+ is not supported / LoRA+ã¯é察å¿
+
+LoRA+ (`loraplus_lr_ratio` in `--network_args`) is **not supported** with LoHa/LoKr. LoRA+ works by applying different learning rates to the LoRA-A and LoRA-B matrices, which is specific to the standard LoRA architecture. LoHa and LoKr have different parameter structures and this optimization does not apply.
+
+
+æ¥æ¬èª
+
+LoRA+ïŒ`--network_args` ã® `loraplus_lr_ratio`ïŒã¯LoHa/LoKrã§ã¯ **é察å¿** ã§ããLoRA+ã¯LoRA-AãšLoRA-Bã®è¡åã«ç°ãªãåŠç¿çãé©çšããææ³ã§ãããæšæºçãªLoRAã®ã¢ãŒããã¯ãã£ã«åºæã®ãã®ã§ããLoHaãšLoKrã¯ãã©ã¡ãŒã¿æ§é ãç°ãªãããããã®æé©åã¯é©çšãããŸããã
+
+
+
+### Merging to base model / ããŒã¹ã¢ãã«ãžã®ããŒãž
+
+`merge_lora.py` currently supports standard LoRA only. LoHa/LoKr weights cannot be merged into the base model using this script.
+
+For architectures with built-in LoHa/LoKr support (listed above), merging is performed automatically during model loading at inference time, so this limitation only affects offline merging workflows.
+
+
+æ¥æ¬èª
+
+`merge_lora.py` ã¯çŸåšãæšæºLoRAã®ã¿ããµããŒãããŠããŸãããã®ã¹ã¯ãªããã§ã¯LoHa/LoKrã®éã¿ãããŒã¹ã¢ãã«ã«ããŒãžããããšã¯ã§ããŸããã
+
+LoHa/LoKrã®ãã€ãã£ããµããŒããããã¢ãŒããã¯ãã£ïŒäžèšïŒã§ã¯ãæšè«æã®ã¢ãã«èªã¿èŸŒã¿æã«ããŒãžãèªåçã«è¡ãããããããã®å¶éã¯ãªãã©ã€ã³ããŒãžã®ã¯ãŒã¯ãããŒã«ã®ã¿åœ±é¿ããŸãã
+
+
+
+### Format conversion / ãã©ãŒããã倿
+
+`convert_lora.py` is extended to also support format conversion of LoHa/LoKr weights between Musubi Tuner format and Diffusers format for ComfyUI.
+
+
+æ¥æ¬èª
+
+`convert_lora.py` ã¯ãLoRAã«å ããŠãLoHa/LoKrã®éã¿ã®ãã©ãŒããã倿ïŒMusubi Tuner圢åŒãšDiffusers圢åŒéã®å€æïŒã«ã€ããŠããµããŒããããããæ¡åŒµãããŠããŸãã
+
+
diff --git a/docs/ltx_2.md b/docs/ltx_2.md
new file mode 100644
index 0000000000000000000000000000000000000000..71ec0606671915e674b808553ba8319ce9927ed4
--- /dev/null
+++ b/docs/ltx_2.md
@@ -0,0 +1,1832 @@
+# LTX-2 / LTX-2.3
+
+Supports LoRA training for both **LTX-2 (19B)** and **LTX-2.3 (22B)** models with the following training modes: text-to-video, joint audio-video, audio-only, IC-LoRA / video-to-video, and audio-reference IC-LoRA.
+
+### Supported Model Versions
+
+| Version | Parameters | Key Differences |
+|---------|-----------|-----------------|
+| LTX-2 (19B) | 19B | Single `aggregate_embed`, caption projection inside transformer |
+| LTX-2.3 (22B) | 22B | Dual `video_aggregate_embed`/`audio_aggregate_embed`, caption projection moved to feature extractor (`caption_proj_before_connector`), cross-attention AdaLN (`prompt_adaln`), separate audio connector dimensions, BigVGAN v2 vocoder with bandwidth extension |
+
+Version choice for training is controlled by `--ltx_version` (default: `2.0`) in `ltx2_train_network.py`. The trainer auto-detects the checkpoint version from metadata and warns on mismatch.
+
+Caching scripts (`ltx2_cache_latents.py`, `ltx2_cache_text_encoder_outputs.py`) do not use `--ltx_version`; they work with both LTX-2 and LTX-2.3 checkpoints directly via `--ltx2_checkpoint`.
+
+---
+
+## Table of Contents
+
+- [Installation](#installation)
+ - [CUDA Version](#cuda-version)
+ - [Downloading Required Models](#downloading-required-models)
+- [Supported Dataset Types](#supported-dataset-types)
+- [1. Caching Latents](#1-caching-latents)
+ - [Latent Caching Command](#latent-caching-command)
+ - [Latent Caching Arguments](#latent-caching-arguments)
+ - [Latent Cache Output Files](#latent-cache-output-files)
+ - [Memory Optimization for Caching](#memory-optimization-for-caching)
+- [2. Caching Text Encoder Outputs](#2-caching-text-encoder-outputs)
+ - [Text Encoder Caching Arguments](#text-encoder-caching-arguments)
+ - [Text Encoder Output Files](#text-encoder-output-files)
+ - [Loading Gemma from a Single Safetensors File](#loading-gemma-from-a-single-safetensors-file)
+- [3. Training](#3-training)
+ - [Choosing Model Version for Training (2.0 vs 2.3)](#choosing-model-version-for-training-20-vs-23)
+ - [Source-Free Training from Cache](#optional-source-free-training-from-cache)
+ - [Standard LoRA Training](#standard-lora-training)
+ - [Advanced: LyCORIS/LoKR Training](#advanced-lycorislokr-training)
+ - [Training Arguments](#training-arguments)
+ - [Memory Optimization](#memory-optimization)
+ - [Quantization Options](#quantization-options)
+ - [Other Memory Options](#other-memory-options)
+ - [Aggressive VRAM Optimization (8-16GB GPUs)](#aggressive-vram-optimization-8-16gb-gpus)
+ - [NF4 Quantization](#nf4-quantization)
+ - [Model Version](#model-version)
+ - [Audio-Video Support](#audio-video-support)
+ - [Loss Weighting](#loss-weighting)
+ - [Additional Audio Training Flags](#additional-audio-training-flags)
+ - [Per-Module Learning Rates](#per-module-learning-rates)
+ - [Preservation & Regularization](#preservation--regularization)
+ - [CREPA (Cross-frame Representation Alignment)](#crepa-cross-frame-representation-alignment)
+ - [Caching DINOv2 Features (Dino Mode)](#caching-dinov2-features-dino-mode)
+ - [Self-Flow (Self-Supervised Flow Matching)](#self-flow-self-supervised-flow-matching)
+ - [Timestep Sampling](#timestep-sampling)
+ - [LoRA Targets](#lora-targets)
+ - [IC-LoRA / Video-to-Video Training](#ic-lora--video-to-video-training)
+ - [Audio-Reference IC-LoRA](#audio-reference-ic-lora-speaker-identity)
+ - [Sampling with Tiled VAE](#sampling-with-tiled-vae)
+ - [Precached Sample Prompts](#precached-sample-prompts)
+ - [Two-Stage Sampling (WIP)](#two-stage-sampling-wip)
+ - [Checkpoint Output Format](#checkpoint-output-format)
+ - [Resuming Training](#resuming-training)
+- [Merge LTX-2 LoRAs](#merge-ltx-2-loras)
+ - [LoRA Merge Arguments](#lora-merge-arguments)
+- [Dataset Configuration](#dataset-configuration)
+ - [Video Dataset Options](#video-dataset-options)
+ - [Audio Dataset Options](#audio-dataset-options)
+ - [Example TOML](#example-toml)
+ - [Frame Rate (FPS) Handling](#frame-rate-fps-handling)
+- [Validation Datasets](#validation-datasets)
+- [Directory Structure](#directory-structure)
+- [Troubleshooting](#troubleshooting)
+- [4. Slider LoRA Training](#4-slider-lora-training)
+ - [4a. Text-Only Mode](#4a-text-only-mode)
+ - [4b. Reference Mode](#4b-reference-mode)
+ - [Slider Tips](#slider-tips)
+- [References](#references)
+
+---
+
+## Installation
+
+Unless otherwise noted, command examples in this LTX-2 guide were tested on Windows 11. They should also work on Linux, but you may need small shell/path adjustments.
+
+For a Windows-focused community setup example for this fork (tested environment and install helpers), see [Discussion #19: Windows OS installation/usage helpers](https://github.com/AkaneTendo25/musubi-tuner/discussions/19).
+
+### CUDA Version
+
+The PyTorch install command must use a CUDA version compatible with your GPU. Adjust the `--index-url` accordingly:
+
+```bash
+# Default (most GPUs, including RTX 30xx/40xx):
+pip install torch==2.8.0 torchvision==0.23.0 torchaudio==2.8.0 --index-url https://download.pytorch.org/whl/cu126
+
+# RTX 5090 / 50xx series (Blackwell):
+pip install torch==2.8.0 torchvision==0.23.0 torchaudio==2.8.0 --index-url https://download.pytorch.org/whl/cu128
+```
+
+Always match the CUDA version to your GPU architecture â check [PyTorch's compatibility matrix](https://pytorch.org/get-started/locally/) for the latest supported versions.
+
+### Downloading Required Models
+
+The trainer does not download models automatically. You must manually download the following files before caching or training.
+
+**LTX-2 Checkpoint** â use as `--ltx2_checkpoint`:
+- LTX-2 (19B): [ltx-2-19b-dev.safetensors](https://huggingface.co/Lightricks/LTX-2/resolve/main/ltx-2-19b-dev.safetensors)
+- LTX-2.3 (22B): [ltx-2.3-22b-dev.safetensors](https://huggingface.co/Lightricks/LTX-2.3/resolve/main/ltx-2.3-22b-dev.safetensors)
+
+**Gemma Text Encoder** â pick one:
+- HF directory (`--gemma_root`): [gemma-3-12b-it-qat-q4_0-unquantized](https://huggingface.co/Lightricks/gemma-3-12b-it-qat-q4_0-unquantized)
+- Single file (`--gemma_safetensors`): [gemma_3_12B_it_fp8_e4m3fn.safetensors](https://huggingface.co/GitMylo/LTX-2-comfy_gemma_fp8_e4m3fn/resolve/main/gemma_3_12B_it_fp8_e4m3fn.safetensors)
+
+Other Gemma 3 12B variants may work but not all have been tested.
+
+---
+
+## Supported Dataset Types
+
+| Mode | Dataset Type | Notes |
+|------|--------------|-------|
+| `video` | Images | Treated as 1-frame samples (`F=1`) |
+| `video` | Videos | Standard video training |
+| `av` | Videos with audio | Audio extracted from video or external audio files |
+| `audio` | Audio only | Dataset must be audio-only; training uses audio-driven latent geometry |
+
+---
+
+## 1. Caching Latents
+
+This step pre-processes media files into VAE latents to speed up training.
+
+**Script:** `ltx2_cache_latents.py`
+
+### Latent Caching Command
+```bash
+python ltx2_cache_latents.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --device cuda ^
+ --vae_dtype bf16 ^
+ --ltx2_mode av ^
+ --ltx2_audio_source video
+```
+
+### Latent Caching Arguments
+- `--ltx2_mode`, `--ltx_mode`: Caching modality selector. Default is video-only (`v`/`video`). Use `av` to cache both `*_ltx2.safetensors` (video) and `*_ltx2_audio.safetensors` (audio) latents.
+- `--ltx2_audio_source video|audio_files`: Use audio from the video or from external files.
+- `--ltx2_audio_dir`, `--ltx2_audio_ext`: Optional when using `--ltx2_audio_source audio_files` (default extension: `.wav`).
+- `--ltx2_checkpoint`: Required for `--ltx2_mode av` or `--ltx2_mode audio`.
+- `--audio_only_target_resolution`: Optional square override for audio-only latent geometry. Only takes effect when `--audio_only_sequence_resolution 0`; otherwise the fixed sequence resolution is used instead.
+- `--audio_only_target_fps`: Target FPS used to derive audio-only frame counts from audio duration (default: `25`).
+- `--audio_video_latent_channels`: Optional override for audio-only video latent channels (auto-detected from checkpoint by default).
+- `--ltx2_audio_dtype`: Data type for audio VAE encoding (default: `float16`).
+- `--audio_video_latent_dtype`: Optional override for audio-only video latent dtype (defaults to `--ltx2_audio_dtype`).
+- `--vae_dtype`: Data type for VAE latents (default comes from the cache script).
+- `--save_dataset_manifest`: Optional. Saves a cache-only dataset manifest for source-free training.
+- `--precache_sample_latents`: Cache I2V conditioning image latents for sample prompts, then continue with normal latent caching. Requires `--sample_prompts`.
+- `--sample_latents_cache`: Path for the I2V conditioning latents cache file (default: `/ltx2_sample_latents_cache.pt`).
+- `--reference_frames`: Number of reference frames to cache for IC-LoRA / V2V (default: `1`).
+- `--reference_downscale`: Spatial downscale factor for cached reference latents (default: `1`).
+
+### Latent Cache Output Files
+
+| File Pattern | Contents |
+|--------------|----------|
+| `*_ltx2.safetensors` | Video latents: `latents_{F}x{H}x{W}_{dtype}`. In audio-only mode, this file also stores `ltx2_virtual_num_frames_int32` (used for timestep sampling) and `ltx2_virtual_height_int32`/`ltx2_virtual_width_int32` (only used when `--audio_only_sequence_resolution 0`). |
+| `*_ltx2_audio.safetensors` | Audio latents: `audio_latents_{T}x{mel_bins}x{channels}_{dtype}`, `audio_lengths_int32` |
+
+### Memory Optimization for Caching
+If you encounter Out-Of-Memory (OOM) errors during caching (especially with higher resolutions like 1080p), you have two options:
+
+**Option 1: VAE temporal chunking** (fewer parameters, for moderate OOM)
+```bash
+python ltx2_cache_latents.py ^
+ ...
+ --vae_chunk_size 16
+```
+- `--vae_chunk_size`: Processes video in temporal chunks (e.g., 16 or 32 frames at a time). Default: `None` (all frames).
+
+**Option 2: VAE tiled encoding** (larger VRAM savings, for severe OOM or high-resolution videos)
+```bash
+python ltx2_cache_latents.py ^
+ ...
+ --vae_spatial_tile_size 512 ^
+ --vae_spatial_tile_overlap 64
+```
+- `--vae_spatial_tile_size`: Splits each frame into spatial tiles of this size in pixels (e.g., 512). Must be >= 64 and divisible by 32. Default: `None` (disabled).
+- `--vae_spatial_tile_overlap`: Overlap between spatial tiles in pixels. Must be divisible by 32. Default: `64`.
+- `--vae_temporal_tile_size`: Splits the video into temporal tiles of this many frames (e.g., 64). Must be >= 16 and divisible by 8. Default: `None` (disabled).
+- `--vae_temporal_tile_overlap`: Overlap between temporal tiles in frames. Must be divisible by 8. Default: `24`.
+
+Spatial and temporal tiling can be combined. Tiled encoding trades speed for VRAM savings.
+
+Both options can be combined (e.g., `--vae_chunk_size 16 --vae_spatial_tile_size 512`).
+
+---
+
+## 2. Caching Text Encoder Outputs
+
+This step pre-computes text embeddings using the Gemma text encoder.
+
+**Script:** `ltx2_cache_text_encoder_outputs.py`
+
+### Text Encoder Caching Command
+```bash
+python ltx2_cache_text_encoder_outputs.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --gemma_root /path/to/gemma ^
+ --gemma_load_in_8bit ^
+ --device cuda ^
+ --mixed_precision bf16 ^
+ --ltx2_mode av ^
+ --batch_size 1
+```
+
+### Text Encoder Caching Arguments
+- `--gemma_root`: Path to the local Gemma model folder (HuggingFace format). Required unless `--gemma_safetensors` is used.
+- `--gemma_safetensors`: Path to a single Gemma `.safetensors` file (e.g. an FP8 export from ComfyUI). Loads weights, config, and tokenizer from one file â no `--gemma_root` needed. See [Loading Gemma from a Single Safetensors File](#loading-gemma-from-a-single-safetensors-file) below.
+- `--gemma_load_in_8bit`: Loads Gemma in 8-bit quantization. Cannot be combined with `--gemma_safetensors`.
+- `--gemma_load_in_4bit`: Loads Gemma in 4-bit quantization. Cannot be combined with `--gemma_safetensors`.
+- `--gemma_bnb_4bit_quant_type nf4|fp4`: Quantization type for 4-bit loading (default: `nf4`).
+- `--gemma_bnb_4bit_disable_double_quant`: Disable bitsandbytes double quantization for 4-bit loading.
+- `--gemma_bnb_4bit_compute_dtype auto|fp16|bf16|fp32`: Compute dtype for 4-bit operations (default: `auto`, uses `--mixed_precision` dtype).
+- `--ltx2_checkpoint`: Required. Use `--ltx2_text_encoder_checkpoint` to override for text encoder connector weights.
+- 8-bit/4-bit loading requires `--device cuda`.
+
+> [!IMPORTANT]
+> `--ltx2_mode` / `--ltx_mode` **must match** the mode used during latent caching. Default is `video`; use `av` to concatenate video and audio prompt embeddings.
+
+### Text Encoder Output Files
+
+| File Pattern | Contents |
+|--------------|----------|
+| `*_ltx2_te.safetensors` | `video_prompt_embeds_{dtype}`, `audio_prompt_embeds_{dtype}` (av only), `prompt_attention_mask`, `text_{dtype}`, `text_mask` |
+
+### Loading Gemma from a Single Safetensors File
+
+`--gemma_safetensors` loads Gemma from a single `.safetensors` file instead of a HuggingFace model directory. Weights, tokenizer (`spiece_model` key), and config (inferred from tensor shapes) are all read from the one file. No `--gemma_root` needed.
+
+```bash
+python ltx2_cache_text_encoder_outputs.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --gemma_safetensors /path/to/gemma3-12b-it-fp8.safetensors ^
+ --device cuda ^
+ --mixed_precision bf16
+```
+
+- FP8 weights (`F8_E4M3` / `F8_E5M2`) are detected automatically and kept in FP8 on GPU (compute in bf16). By default FP8 weights are offloaded to CPU between encoding calls; set `LTX2_GEMMA_SAFETENSORS_WEIGHT_OFFLOAD=0` to keep them on GPU.
+- `--gemma_load_in_8bit` / `--gemma_load_in_4bit` cannot be combined with `--gemma_safetensors`.
+- If the file has no `spiece_model` key, tokenizer extraction fails â use `--gemma_root` instead.
+- Works in all scripts that load Gemma: `ltx2_cache_text_encoder_outputs.py`, `ltx2_train_network.py`, `ltx2_train_slider.py`, `ltx2_generate_video.py`.
+
+---
+
+## 3. Training
+
+Launch the training loop using `accelerate`.
+
+**Script:** `ltx2_train_network.py`
+
+### Choosing Model Version for Training (2.0 vs 2.3)
+
+Use this rule:
+
+| Checkpoint you train on | Required training flags |
+|---|---|
+| LTX-2 (19B) checkpoint | `--ltx_version 2.0` |
+| LTX-2.3 (22B) checkpoint | `--ltx_version 2.3` |
+
+Recommended practice:
+- Always set `--ltx_version` explicitly in training commands (do not rely on the default).
+- On first run, set `--ltx_version_check_mode error` to fail fast if the selected version does not match checkpoint metadata.
+- After validation, you can switch to `--ltx_version_check_mode warn`.
+- For LTX-2.3, current upstream recommendation is to train from the BF16 checkpoint. FP8-checkpoint training recipes are currently community-contributed/experimental.
+
+When changing checkpoints (important):
+- If you change `--ltx2_checkpoint` (e.g., LTX-2 -> LTX-2.3, or different 2.3 variant), re-run **both** caches:
+ - `ltx2_cache_latents.py`
+ - `ltx2_cache_text_encoder_outputs.py`
+- Do not reuse old `*_ltx2_te.safetensors` from a different checkpoint. For LTX-2.3 audio/av training this can cause context/mask shape mismatches (for example FlashAttention varlen mask-length errors).
+- If you use `--dataset_manifest`, regenerate it from the recache step so training points to the new cache files.
+- If your selected checkpoint is already FP8-quantized (for example `*fp8*.safetensors`), still keep `--fp8_base` during training (usually with `--mixed_precision bf16`), but do not add `--fp8_scaled`.
+
+Example (LTX-2.3 training):
+```bash
+--ltx2_checkpoint /path/to/ltx-2.3.safetensors ^
+--ltx_version 2.3 ^
+--ltx_version_check_mode error
+```
+
+### Optional: Source-Free Training from Cache
+If you cached with `--save_dataset_manifest`, you can train without source dataset paths:
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --dataset_manifest dataset_manifest.json ^
+ ... (other training args)
+```
+
+Use `--dataset_manifest` instead of `--dataset_config`.
+
+### Standard LoRA Training
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --mixed_precision bf16 ^
+ --dataset_config dataset.toml ^
+ --gemma_load_in_8bit ^
+ --gemma_root /path/to/gemma ^
+ --separate_audio_buckets ^
+ --ltx2_checkpoint /path/to/ltx-2.3.safetensors ^
+ --ltx_version 2.3 ^
+ --ltx_version_check_mode error ^
+ --ltx2_mode av ^
+ --fp8_base ^
+ --fp8_scaled ^
+ --blocks_to_swap 10 ^
+ --sdpa ^
+ --gradient_checkpointing ^
+ --learning_rate 1e-4 ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 32 ^
+ --network_alpha 32 ^
+ --timestep_sampling shifted_logit_normal ^
+ --sample_at_first ^
+ --sample_every_n_epochs 5 ^
+ --sample_prompts sampling_prompts.txt ^
+ --sample_with_offloading ^
+ --sample_tiled_vae ^
+ --sample_vae_tile_size 512 ^
+ --sample_vae_tile_overlap 64 ^
+ --sample_vae_temporal_tile_size 48 ^
+ --sample_vae_temporal_tile_overlap 8 ^
+ --sample_merge_audio ^
+ --output_dir output ^
+ --output_name ltx23_lora
+```
+
+If the selected checkpoint is already FP8 (`*fp8*.safetensors`), keep `--fp8_base` but remove `--fp8_scaled`.
+
+For LTX-2 checkpoints, replace:
+- `--ltx2_checkpoint /path/to/ltx-2.3.safetensors` -> `--ltx2_checkpoint /path/to/ltx-2.safetensors`
+- `--ltx_version 2.3` -> `--ltx_version 2.0`
+
+### Advanced: LyCORIS/LoKR Training
+
+> [!WARNING]
+> LyCORIS training for LTX-2 has been reported as unstable by some users. This is currently being investigated. Use with caution and please report issues.
+
+musubi-tuner supports advanced LoRA algorithms (LoKR, LoHA, LoCoN, etc.) via:
+- `--network_args` for inline `key=value` settings
+- `--lycoris_config ` for TOML-based settings
+
+See the [LyCORIS algorithm list](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Algo-List.md) and [guidelines](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Guidelines.md) for algorithm details and recommended settings.
+
+No bundled example TOML files are shipped; provide your own config path.
+
+```bash
+# Install LyCORIS first
+pip install lycoris-lora
+
+# Example TOML (save anywhere, e.g. my_lycoris.toml)
+# [network]
+# base_algo = "lokr"
+# base_factor = 16
+#
+# [network.modules."*audio*"]
+# algo = "lora"
+# dim = 64
+# alpha = 32
+#
+# [network.init]
+# lokr_norm = 1e-3
+
+# LoKR example
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ ... (same args as above) ^
+ --network_module lycoris.kohya ^
+ --lycoris_config my_lycoris.toml ^
+ --output_name ltx2_lokr
+
+# LoCoN example (inline args)
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ ... (same args as above) ^
+ --network_module lycoris.kohya ^
+ --network_args "algo=locon" "conv_dim=8" "conv_alpha=4" ^
+ --output_name ltx2_locon
+```
+
+**Target format (`--network_args`)**
+- Pass args as space-separated `key=value` pairs.
+- Each pair is one argument token: `--network_args "key1=value1" "key2=value2"`.
+- Common LyCORIS keys: `algo`, `factor`, `conv_dim`, `conv_alpha`, `dropout`.
+- Use `--init_lokr_norm` only with LoKR (`algo=lokr`).
+- If both TOML and `--network_args` are used, `--network_args` can override nested TOML keys with:
+ - `modules..=...`
+ - `init.=...`
+
+`--lycoris_config` requires `--network_module lycoris.kohya`.
+
+### Training Arguments
+
+All training arguments can be placed in a `.toml` config file instead of on the command line via `--config_file config.toml`. See the upstream [configuration files guide](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/advanced_config.md#using-configuration-files-to-specify-training-options--èšå®ãã¡ã€ã«ã䜿çšããåŠç¿ãªãã·ã§ã³ã®æå®) for format details.
+
+#### Memory Optimization
+
+##### Quantization Options
+
+| Method | VRAM (19B, LTX-2) | Weight Error (MAE) | SNR | Cosine Similarity |
+|--------|------------------|--------------------|-----|-------------------|
+| BF16 (baseline) | ~38 GB | 0.0011 | 55.6 dB | 0.999999 |
+| `--fp8_base --fp8_scaled` | ~19 GB | 0.0171 (15x BF16) | 32.0 dB | 0.999686 |
+| `--nf4_base` | ~10 GB | 0.0678 (60x BF16) | 21.2 dB | 0.996188 |
+| `--nf4_base --loftq_init` | ~10 GB | 0.0654 (60x BF16) | 21.5 dB | 0.996437 |
+
+*Approximate values measured on random N(0,1) weights with shapes representative of LTX-2 transformer layers. MAE = mean absolute error between original and dequantized weights. LoftQ error is measured after adding the LoRA correction (rank 32, 2 iterations). No benchmark script is included in this repo.*
+
+NF4 has ~4x higher weight error than FP8 (cosine 0.996 vs 0.9997). The base model is frozen during LoRA training, so the quantization error is constant rather than accumulating. LoftQ initializes LoRA weights from the quantization residual via SVD.
+
+- `--fp8_base`: keep base model weights in FP8 path (~19 GB VRAM).
+- `--fp8_scaled`: quantize non-FP8 (fp16/bf16/fp32) checkpoints to FP8. Do not use this with already-FP8 checkpoints.
+- `--nf4_base`: NF4 4-bit quantization (~10 GB VRAM). Mutually exclusive with `--fp8_base`. See [NF4 Quantization](#nf4-quantization) below.
+- `--quantize_device cpu|cuda|gpu`: Device for NF4/FP8 quantization at startup (default: `cuda`). `cpu` loads and quantizes weights on CPU, then moves to GPU. `cuda` loads and quantizes directly on GPU. Overrides `LTX2_NF4_CALC_DEVICE` / `LTX2_FP8_CALC_DEVICE` env vars.
+
+##### Other Memory Options
+
+| Argument | Description |
+|----------|-------------|
+| `--blocks_to_swap X` | Offload X transformer blocks to CPU (max 47 for 48-block model). Higher = more VRAM saved, more CPUâGPU overhead |
+| `--use_pinned_memory_for_block_swap` | Use pinned memory for faster CPUâGPU block transfers |
+| `--gradient_checkpointing` | Reduce VRAM by recomputing activations during backward pass |
+| `--gradient_checkpointing_cpu_offload` | Offload activations to CPU during gradient checkpointing |
+| `--ffn_chunk_target` | `all`, `video`, or `audio` â enable FFN chunking for selected modules |
+| `--ffn_chunk_size N` | Chunk size for FFN chunking (0 = disabled) |
+| `--split_attn_target` | `none`, `all`, `self`, `cross`, `text_cross`, `av_cross`, `video`, `audio` â split attention target modules |
+| `--split_attn_mode` | `batch` or `query` â split by batch dimension or query length |
+| `--split_attn_chunk_size N` | Chunk size for query-based split attention (0 = default 1024) |
+| `--sdpa` | Use PyTorch scaled dot-product attention (recommended default) |
+| `--flash_attn` | Use FlashAttention 2 (requires `flash-attn` package built for your CUDA + PyTorch) |
+| `--flash3` | Use FlashAttention 3 (requires `flash-attn` v3 with Hopper+ GPU) |
+
+#### Aggressive VRAM Optimization (8-16GB GPUs)
+
+For maximum VRAM savings on 8-16GB GPUs, use this combination of flags:
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --mixed_precision bf16 ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --ltx2_mode av ^
+ --gemma_load_in_8bit ^
+ --gemma_root /path/to/gemma ^
+ --fp8_base ^
+ --fp8_scaled ^
+ --blocks_to_swap 47 ^
+ --use_pinned_memory_for_block_swap ^
+ --gradient_checkpointing ^
+ --gradient_checkpointing_cpu_offload ^
+ --sdpa ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 16 ^
+ --network_alpha 16 ^
+ --sample_with_offloading ^
+ --sample_tiled_vae ^
+ --sample_vae_tile_size 512 ^
+ --sample_vae_temporal_tile_size 48 ^
+ --output_dir output
+```
+
+**Tips for low-VRAM training:**
+- Use `--fp8_base --fp8_scaled` for non-FP8 checkpoints; use `--fp8_base` only for already-FP8 checkpoints
+- Use `--blocks_to_swap 47` (keeps only 1 block on GPU)
+- Use smaller LoRA rank (`--network_dim 16` instead of 32)
+- Use smaller training resolutions (e.g., 512x320)
+- Reduce `--sample_vae_temporal_tile_size` to 24 or lower
+- Use `--use_pinned_memory_for_block_swap` - faster transfers
+
+#### NF4 Quantization
+
+NF4 (4-bit NormalFloat) quantization uses a 16-value codebook optimized for normally-distributed weights (QLoRA paper). Weights are stored as packed uint8 with per-block absmax scaling. VRAM usage is ~10 GB vs ~19 GB for FP8 and ~38 GB for BF16.
+
+**Basic usage:**
+```bash
+accelerate launch ... ltx2_train_network.py ^
+ --nf4_base ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 32 ^
+ ...
+```
+
+**With LoftQ initialization:**
+
+LoftQ pre-computes LoRA A/B matrices from the truncated SVD of the NF4 quantization residual (`W - dequant(Q(W))`). This runs once at startup and adds no runtime cost.
+
+```bash
+accelerate launch ... ltx2_train_network.py ^
+ --nf4_base ^
+ --loftq_init ^
+ --loftq_iters 2 ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 32 ^
+ ...
+```
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--nf4_base` | off | Enable NF4 4-bit quantization for the base model |
+| `--nf4_block_size` | 32 | Elements per quantization block |
+| `--loftq_init` | off | LoftQ initialization for LoRA (requires `--nf4_base`) |
+| `--loftq_iters` | 2 | Number of alternating quantize-SVD iterations |
+| `--awq_calibration` | off | Experimental: activation-aware channel scaling before quantization |
+| `--awq_alpha` | 0.25 | AWQ scaling strength (0 = no effect, 1 = full) |
+| `--awq_num_batches` | 8 | Number of synthetic calibration batches for AWQ |
+| `--quantize_device` | `cuda` | Device for quantization math (`cpu`, `cuda`, `gpu`) |
+
+**Pre-quantized models (recommended):**
+
+By default, NF4 quantization runs from scratch on every startup. `ltx2_quantize_model.py` quantizes once and saves the result (~42% of the original file size). The training/inference code auto-detects pre-quantized checkpoints via safetensors metadata and skips re-quantization.
+
+```bash
+python src/musubi_tuner/ltx2_quantize_model.py ^
+ --input_model path/to/ltx-2.3-22b-dev.safetensors ^
+ --output_model path/to/ltx-2.3-22b-dev-nf4.safetensors ^
+ --loftq_init --network_dim 32
+```
+
+Output files (kept in the same directory):
+- `*-nf4.safetensors` â quantized model (transformer in NF4, VAE and other components unchanged)
+- `*-nf4.loftq_r32.safetensors` â pre-computed LoftQ init for rank 32 (only with `--loftq_init`)
+
+Then use it exactly like the original checkpoint â just point `--ltx2_checkpoint` at the NF4 file. `--nf4_base` is still required (enables the runtime dequantization patch):
+
+```bash
+accelerate launch ... ltx2_train_network.py ^
+ --ltx2_checkpoint path/to/ltx-2.3-22b-dev-nf4.safetensors ^
+ --nf4_base --loftq_init --network_dim 32 ^
+ ...
+```
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--input_model` | required | Path to original `.safetensors` checkpoint |
+| `--output_model` | required | Path for quantized output |
+| `--nf4_block_size` | 32 | Elements per quantization block |
+| `--calc_device` | `cuda` if available | Device for quantization computation |
+| `--loftq_init` | off | Pre-compute LoftQ initialization (requires `--network_dim`) |
+| `--loftq_iters` | 2 | Number of LoftQ alternating iterations |
+| `--network_dim` | 0 | LoRA rank for LoftQ (must match training `--network_dim`) |
+
+- LoftQ is rank-specific: changing `--network_dim` requires re-running the quantize script with the new rank. The quantized model itself does not need to be regenerated.
+- `--awq_calibration` is incompatible with pre-quantized models (requires full-precision weights).
+- The quantized output is bit-for-bit identical to dynamic quantization on the same device.
+
+**Notes:**
+- `--nf4_base` and `--fp8_base` are mutually exclusive.
+- `--loftq_init` requires `--nf4_base`.
+- `--awq_calibration` is experimental. Adds a per-layer division during forward passes. In synthetic tests, reduces activation-weighted error by ~3-5%; effect on real training quality has not been validated.
+- Compatible with `--blocks_to_swap`, `--gradient_checkpointing`, and other training options. NF4 reduces block swap transfer size (4-bit vs 16-bit per weight).
+- Quantization targets transformer block weights only. Embedding layers, norms, and projection layers remain in full precision.
+
+#### Model Version
+- `--ltx_version 2.0|2.3`: Select target model version (default: `2.0`). Controls default behavior for version-dependent settings (e.g., `--shifted_logit_mode` defaults to `legacy` for 2.0, `stretched` for 2.3). For LTX-2.3 checkpoints, set `--ltx_version 2.3` explicitly.
+- `--ltx_version_check_mode off|warn|error`: How to handle mismatch between `--ltx_version` and checkpoint metadata (default: `warn`). The trainer reads checkpoint config keys (`cross_attention_adaln`, `caption_proj_before_connector`, `bwe` vocoder) to detect the actual version.
+
+#### Audio-Video Support
+- `--ltx2_mode`, `--ltx_mode`: Training modality selector. Default is `v` (`video`). Values: `video`, `av`, `audio` (aliases: `v`, `va`, `a`).
+- `--ltx2_audio_only_model`: Force loading a physically audio-only transformer variant (video modules omitted). Requires `--ltx2_mode audio`.
+- `--separate_audio_buckets`: Keeps audio and non-audio items in separate batches (reduces VRAM for image/video-only batches).
+- `--audio_bucket_strategy pad|truncate`: Audio duration bucketing strategy. `pad` (default) rounds to nearest bucket boundary and pads shorter clips with loss masking. `truncate` floors to bucket boundary and truncates all clips to bucket length (no padding or masking needed).
+- `--audio_bucket_interval`: Audio bucket step size in seconds (default: `2.0`). Controls how finely audio clips are grouped by duration.
+- `--min_audio_batches_per_accum`: Minimum number of audio-bearing microbatches per gradient accumulation window.
+- `--audio_batch_probability`: Probability of selecting an audio-bearing batch when both audio and non-audio batches are available.
+ - `--min_audio_batches_per_accum` and `--audio_batch_probability` are mutually exclusive.
+- `--caption_dropout_rate`: Probability of dropping text conditioning for a sample during training (default: `0.0`, disabled). When triggered, the sample's text embeddings are zeroed out and the attention mask is cleared, training the model to generate without text guidance. This enables classifier-free guidance (CFG) at inference â without it, the model has no unconditional baseline to contrast against.
+
+#### Loss Function Type
+
+`--loss_type` selects the element-wise loss function used for both video and audio branches. Default is `mse`.
+
+| `--loss_type` | PyTorch function | Per-element formula |
+|---|---|---|
+| `mse` (default) | `F.mse_loss` | `(pred - tgt)²` |
+| `mae` / `l1` | `F.l1_loss` | `\|pred - tgt\|` |
+| `huber` / `smooth_l1` | `F.smooth_l1_loss` | `0.5·(pred-tgt)²/Ύ` when `\|pred-tgt\| < Ύ`, else `\|pred-tgt\| - 0.5·Ύ` |
+
+- `--huber_delta` (float, default: 1.0): Transition point for Huber loss. Only used when `--loss_type` is `huber` or `smooth_l1`. Smaller values make the loss behave more like L1; larger values more like MSE.
+
+All other training mechanics (weighting scheme, masking, audio balancing) apply on top of the chosen loss unchanged.
+
+```bash
+# L1 loss
+--loss_type mae
+
+# Huber with tighter quadratic region
+--loss_type huber --huber_delta 0.1
+```
+
+#### Loss Weighting
+- `--video_loss_weight`: Weight for video loss (default: 1.0).
+- `--audio_loss_weight`: Weight for audio loss in AV mode (default: 1.0).
+- Dataset config `video_loss_weight` / `audio_loss_weight` override the corresponding CLI weight for that dataset only.
+- `--audio_loss_balance_mode`: Audio loss balancing strategy. Values: `none` (default), `inv_freq`, `ema_mag`.
+- `--audio_loss_balance_min`, `--audio_loss_balance_max`: Clamp range for effective audio weight (defaults: 0.05, 4.0).
+
+**`inv_freq` mode** â inverse-frequency reweighting for mixed audio/non-audio training. Boosts audio loss proportionally to how rare audio batches are.
+
+- `--audio_loss_balance_beta`: EMA update rate for observed audio-batch frequency (default: 0.01).
+- `--audio_loss_balance_eps`: Denominator floor for inverse-frequency scaling (default: 0.05).
+- `--audio_loss_balance_ema_init`: Initial audio-frequency EMA value (default: 1.0).
+
+Example:
+```bash
+--audio_loss_weight 1.0 ^
+--audio_loss_balance_mode inv_freq ^
+--audio_loss_balance_beta 0.01 ^
+--audio_loss_balance_eps 0.05 ^
+--audio_loss_balance_min 0.05 ^
+--audio_loss_balance_max 3.0
+```
+
+Recommended start values:
+- `--audio_loss_balance_beta 0.01` (stable EMA, slower reaction; try `0.02-0.05` for faster reaction)
+- `--audio_loss_balance_eps 0.05` (safe floor; increase to `0.1` if weights spike too much)
+- `--audio_loss_balance_min 0.05 --audio_loss_balance_max 3.0` (conservative clamp range)
+- `--audio_loss_balance_ema_init 1.0` (no warm-start boost; use `0.5` only if you want stronger early audio emphasis)
+
+**`ema_mag` mode** â dynamic balancing by matching audio-loss EMA magnitude to a target fraction of video-loss EMA. Bidirectional: can dampen audio (weight < 1.0) when audio loss exceeds `target_ratio * video_loss`, or boost it when audio loss is below that target.
+
+- `--audio_loss_balance_target_ratio`: Target audio/video loss magnitude ratio (default: 0.33 â audio loss targets ~33% of video loss).
+- `--audio_loss_balance_ema_decay`: EMA decay for loss magnitude tracking (default: 0.99).
+
+Example:
+```bash
+--audio_loss_weight 1.0 ^
+--audio_loss_balance_mode ema_mag ^
+--audio_loss_balance_target_ratio 0.33 ^
+--audio_loss_balance_ema_decay 0.99 ^
+--audio_loss_balance_min 0.05 ^
+--audio_loss_balance_max 4.0
+```
+
+Use `ema_mag` when audio and video losses have different natural magnitudes and you want automatic scaling instead of manual `--audio_loss_weight` tuning.
+
+#### Additional Audio Training Flags
+
+- `--independent_audio_timestep`: Sample a separate timestep for audio (AV/audio modes only).
+- `--audio_silence_regularizer`: When AV batches are missing audio latents, use synthetic silence latents instead of skipping the audio branch.
+- `--audio_silence_regularizer_weight`: Loss multiplier for synthetic-silence fallback batches.
+- `--audio_supervision_mode off|warn|error`: AV audio-supervision monitor mode.
+- `--audio_supervision_warmup_steps`: Expected AV batches before supervision checks.
+- `--audio_supervision_check_interval`: Run supervision checks every N expected AV batches.
+- `--audio_supervision_min_ratio`: Minimum supervised/expected ratio required by the monitor.
+
+#### Per-Module Learning Rates
+
+Set different learning rates for audio vs. video LoRA modules. Useful when audio modules need a lower LR to stabilize AV training.
+
+- `--audio_lr `: Learning rate for all audio LoRA modules (names containing `audio_`). Defaults to `--learning_rate`.
+- `--lr_args ...`: Regex-based per-module LR overrides. Patterns are matched against LoRA module names via `re.search`.
+
+Priority (highest to lowest): `--lr_args` pattern match > `--audio_lr` catch-all > `--learning_rate` default.
+
+Example:
+```bash
+--learning_rate 1e-4 ^
+--audio_lr 1e-5 ^
+--lr_args audio_attn=1e-6 video_to_audio=5e-6
+```
+
+Result:
+- `audio_attn` modules â 1e-6 (matched by `--lr_args`)
+- `video_to_audio` modules â 5e-6 (matched by `--lr_args`)
+- Other `audio_*` modules (e.g. `audio_ff`) â 1e-5 (`--audio_lr`)
+- Video modules â 1e-4 (`--learning_rate`)
+
+Works with LoRA+ (`loraplus_lr_ratio`): the up/down split applies within each LR group. Both flags default to `None` and are fully backward-compatible. See [LoRA+ in the upstream advanced configuration guide](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/advanced_config.md#lora) for setup details.
+
+#### Preservation & Regularization
+
+Optional techniques that constrain how the LoRA modifies the base model. All are disabled by default with zero overhead.
+
+**Blank Prompt Preservation** â Prevents the LoRA from altering the model's blank-prompt output (used as the CFG baseline during inference):
+```bash
+--blank_preservation --blank_preservation_args multiplier=1.0
+```
+
+**Differential Output Preservation (DOP)** â Prevents the LoRA from altering class-prompt output, scoping the LoRA effect to the trigger word only:
+```bash
+--dop --dop_args class=woman multiplier=1.0
+```
+The `class` parameter should be a general description without your trigger word (e.g., `woman`, `cat`, `landscape`).
+
+**Prior Divergence** â Encourages the LoRA to produce outputs that differ from the base model on training prompts, preventing weak/timid LoRAs:
+```bash
+--prior_divergence --prior_divergence_args multiplier=0.1
+```
+
+**Audio DOP** â Preserves the base model's audio predictions on non-audio training steps. Requires `--ltx2_mode av`. On each non-audio batch, constructs silence audio latents, runs the transformer with LoRA OFF and ON, and minimizes MSE on the audio branch only. Zero cost on audio batches. Mutually exclusive with `--audio_silence_regularizer`.
+```bash
+--audio_dop --audio_dop_args multiplier=0.5
+```
+
+| Technique | Extra forwards/step | Extra backwards/step | Recommended multiplier |
+|-----------|-------------------|---------------------|----------------------|
+| `--blank_preservation` | +2 | +1 | 0.5 - 1.0 |
+| `--dop` | +2 | +1 | 0.5 - 1.0 |
+| `--prior_divergence` | +1 | 0 | 0.05 - 0.1 |
+| `--audio_dop` | +2 (non-audio steps only) | +1 (non-audio steps only) | 0.3 - 1.0 |
+
+> [!CAUTION]
+> Each preservation technique adds transformer forward passes per step. Audio DOP costs apply only on non-audio steps.
+
+**CREPA (Cross-frame Representation Alignment)** â Encourages temporal consistency across video frames by aligning DiT hidden states across frames via a small projector MLP. Only the projector is trained; all other modules stay frozen. CREPA uses hooks to capture intermediate features from the existing forward pass (no extra forward passes). Two modes are available: `dino` (based on [arXiv 2506.09229](https://arxiv.org/abs/2506.09229), aligns to pre-cached DINOv2 features from neighboring frames) and `backbone` (inspired by [SimpleTuner LayerSync](https://github.com/bghira/SimpleTuner), aligns to a deeper block of the same transformer).
+
+Enable with `--crepa`. All parameters are passed via `--crepa_args` as `key=value` pairs:
+
+```bash
+accelerate launch ... ltx2_train_network.py ^
+ --crepa ^
+ --crepa_args mode=backbone student_block_idx=16 teacher_block_idx=32 lambda_crepa=0.1 tau=1.0 num_neighbors=2 schedule=constant warmup_steps=0 normalize=true
+```
+
+#### CLI Flags
+
+| Flag | Type | Description |
+|------|------|-------------|
+| `--crepa` | store_true | Enable CREPA regularization |
+| `--crepa_args` | key=value list | Configuration parameters (see table below) |
+
+#### CREPA Parameters (`--crepa_args`)
+
+| Parameter | Default | Description |
+|-----------|---------|-------------|
+| `mode` | `backbone` | Teacher signal source: `backbone` (deeper DiT block) or `dino` (pre-cached DINOv2 features) |
+| `dino_model` | `dinov2_vitb14` | DINOv2 variant for dino mode. Must match the model used during caching. Options: `dinov2_vits14`, `dinov2_vitb14`, `dinov2_vitl14`, `dinov2_vitg14` |
+| `student_block_idx` | 16 | Transformer block whose hidden states are aligned (0-47 for LTX-2 48-block model) |
+| `teacher_block_idx` | 32 | Deeper block providing the teacher signal (backbone mode only, must be > `student_block_idx`) |
+| `lambda_crepa` | 0.1 | Loss weight for CREPA term. Recommended range: 0.05â0.5 |
+| `tau` | 1.0 | Temporal neighbor decay factor. Controls how much nearby frames contribute vs distant ones |
+| `num_neighbors` | 2 | Number of neighboring frames on each side (K). Frame f aligns with frames f-K..f+K |
+| `schedule` | `constant` | Lambda schedule over training: `constant`, `linear` (decay to 0), or `cosine` (cosine decay to 0) |
+| `warmup_steps` | 0 | Steps before CREPA loss reaches full strength (linear ramp from 0) |
+| `max_steps` | 0 | Total training steps for schedule computation. Auto-filled from `--max_train_steps` if not set |
+| `normalize` | `true` | L2-normalize features before computing cosine similarity |
+
+#### Checkpoint & Resume
+
+- The projector weights (~33M params for backbone mode) are saved as `crepa_projector.safetensors` in the output directory alongside LoRA checkpoints.
+- When resuming training with `--crepa`, projector weights are automatically loaded from `/crepa_projector.safetensors` if the file exists.
+- The projector is **not needed at inference** â it's only used during training.
+
+#### Monitoring
+
+CREPA adds a `loss/crepa` metric to TensorBoard/WandB logs. A healthy CREPA loss should:
+- Start negative (cosine similarity is being maximized)
+- Gradually decrease (more negative = stronger cross-frame alignment)
+- Stabilize after warmup
+
+#### Compatibility
+
+- Works with block swap (`--blocks_to_swap`) â hooks fire when each block executes regardless of CPU offloading.
+- Works with all preservation techniques (blank preservation, DOP, prior divergence).
+- Works with gradient checkpointing.
+- Projector params are included in gradient clipping alongside LoRA params.
+
+#### Caching DINOv2 Features (Dino Mode)
+
+Dino mode requires pre-cached DINOv2 features. Run this **after latent caching** (cache paths are derived from latent cache files). DINOv2 is not loaded during training â zero VRAM overhead.
+
+```bash
+python ltx2_cache_dino_features.py ^
+ --dataset_config dataset.toml ^
+ --dino_model dinov2_vitb14 ^
+ --dino_batch_size 16 ^
+ --device cuda ^
+ --skip_existing
+```
+
+- `--dino_model`: DINOv2 variant â `dinov2_vits14` (384d), `dinov2_vitb14` (768d, default), `dinov2_vitl14` (1024d), `dinov2_vitg14` (1536d).
+- `--dino_batch_size`: Frames per forward pass. Reduce if OOM (default: 16).
+- `--skip_existing`: Skip items that already have cached features.
+
+Output: `*_ltx2_dino.safetensors` files alongside your latent caches, containing per-frame patch tokens `[T, N_patches, D]`. For `dinov2_vitb14` at 518px input: `N_patches=1369`, `D=768`, so each frame adds ~2MB (float16). Disk usage scales linearly with frame count.
+
+**Precaching preservation prompts:** Blank preservation and DOP require Gemma to encode their prompts at training startup. To avoid loading Gemma during training, precache the embeddings during the text encoder caching step:
+```bash
+python ltx2_cache_text_encoder_outputs.py --dataset_config ... --ltx2_checkpoint ... --gemma_root ... ^
+ --precache_preservation_prompts --blank_preservation --dop --dop_class_prompt "woman"
+```
+Then add the `--use_precached_preservation` flag during training:
+```bash
+python ltx2_train_network.py ... ^
+ --blank_preservation --dop --dop_args class=woman ^
+ --use_precached_preservation
+```
+The cache file is saved to `/ltx2_preservation_cache.pt` by default (same directory as your dataset cache). Use `--preservation_prompts_cache ` to override the location in either command. Prior divergence does not need precaching (it uses the training batch's own embeddings).
+
+#### Self-Flow (Self-Supervised Flow Matching)
+
+**Self-Flow** prevents the fine-tuned model from drifting away from the pretrained model's internal representations. It aligns student features (shallower block) against teacher features (deeper block) using cosine similarity, with dual-timestep noising to create a meaningful student-teacher gap. The default `teacher_mode=base` uses the **frozen pretrained model** as teacher by zeroing LoRA multipliers for the teacher forward pass â no extra VRAM overhead compared to EMA. An EMA-based teacher (`teacher_mode=ema`) is also available for LoRA-aware distillation. The optional **temporal extension** adds frame-neighbor and motion-delta losses that explicitly preserve temporal coherence. Based on [arXiv 2603.06507](https://arxiv.org/abs/2603.06507).
+
+Enable with `--self_flow`. All parameters are passed via `--self_flow_args` as `key=value` pairs:
+
+```bash
+# Recommended default: base-model teacher, token-level alignment only
+accelerate launch ... ltx2_train_network.py ^
+ --self_flow ^
+ --self_flow_args teacher_mode=base student_block_ratio=0.3 teacher_block_ratio=0.7 lambda_self_flow=0.1 mask_ratio=0.1 dual_timestep=true
+
+# With temporal consistency (hybrid = frame alignment + motion delta)
+accelerate launch ... ltx2_train_network.py ^
+ --self_flow ^
+ --self_flow_args lambda_self_flow=0.1 temporal_mode=hybrid lambda_temporal=0.1 lambda_delta=0.05 num_neighbors=2 temporal_granularity=frame
+```
+
+##### CLI Flags
+
+| Flag | Type | Description |
+|------|------|-------------|
+| `--self_flow` | store_true | Enable Self-Flow regularization |
+| `--self_flow_args` | key=value list | Configuration parameters (see table below) |
+
+##### Self-Flow Parameters (`--self_flow_args`)
+
+| Parameter | Default | Description |
+|-----------|---------|-------------|
+| `teacher_mode` | `base` | Teacher source: `base` (frozen pretrained; zero LoRA multipliers during teacher pass, no extra VRAM), `ema` (EMA over all LoRA params), `partial_ema` (EMA over teacher block's LoRA params only) |
+| `student_block_idx` | `16` | Student feature block index (0-based; overridden by `student_block_ratio` when set) |
+| `teacher_block_idx` | `32` | Teacher feature block index (must be `> student_block_idx`; overridden by `teacher_block_ratio` when set) |
+| `student_block_ratio` | `None` | Ratio-based student layer selection. Resolves to `floor(ratio * depth)`. Takes priority over `student_block_idx`. |
+| `teacher_block_ratio` | `None` | Ratio-based teacher layer selection. Resolves to `ceil(ratio * depth)`. Takes priority over `teacher_block_idx`. |
+| `student_block_stochastic_range` | `0` | Randomly vary the student capture block ±N blocks each step. `0` = fixed block. Adds regularization diversity; note a single projector is shared across all depth variants. |
+| `lambda_self_flow` | `0.1` | Loss weight for the Self-Flow token-level representation term |
+| `mask_ratio` | `0.10` | Token mask ratio for dual-timestep mixing. Valid range: `[0.0, 0.5]` |
+| `frame_level_mask` | `false` | When `true`, mask whole latent frames instead of individual tokens. More semantically coherent masking for video. |
+| `mask_focus_loss` | `false` | When `true`, compute the representation loss only on masked (higher-noise) tokens. Default: loss over all tokens. |
+| `max_loss` | `0.0` | Cap Self-Flow loss magnitude by rescaling if total loss exceeds this value. `0` = disabled. Useful to prevent Self-Flow from dominating the main task loss early in training. |
+| `temporal_mode` | `off` | Temporal extension mode: `off`, `frame`, `delta`, or `hybrid` |
+| `lambda_temporal` | `0.0` | Loss weight for frame-level temporal neighbor alignment |
+| `lambda_delta` | `0.0` | Loss weight for frame-delta alignment (motion consistency) |
+| `temporal_tau` | `1.0` | Neighbor decay factor for `frame` / `hybrid` temporal alignment |
+| `num_neighbors` | `2` | Number of temporal neighbors on each side used by `frame` / `hybrid` mode |
+| `temporal_granularity` | `frame` | Temporal loss granularity: `frame` (mean-pooled per frame) or `patch` (preserve spatial tokens) |
+| `patch_spatial_radius` | `0` | In `temporal_granularity=patch`, local spatial neighborhood radius for teacher patch matching (`0` = strict same-patch only) |
+| `patch_match_mode` | `hard` | Patch-neighborhood matching mode: `hard` (best patch in window) or `soft` (softmax-weighted neighborhood match) |
+| `patch_match_temperature` | `0.1` | Soft neighborhood matching temperature when `patch_match_mode=soft` |
+| `delta_num_steps` | `1` | Number of temporal delta steps included in the delta loss (`1` = adjacent frames only) |
+| `motion_weighting` | `none` | Temporal weighting mode: `none` or `teacher_delta` |
+| `motion_weight_strength` | `0.0` | Strength of teacher-delta motion weighting for temporal terms |
+| `temporal_schedule` | `constant` | Schedule applied to **all** Self-Flow lambdas (`lambda_self_flow`, `lambda_temporal`, `lambda_delta`): `constant`, `linear` decay, or `cosine` decay |
+| `temporal_warmup_steps` | `0` | Steps to linearly ramp all lambdas up from zero to full weight |
+| `temporal_max_steps` | `0` | Steps at which `linear` / `cosine` decay reaches zero. `0` = no decay |
+| `teacher_momentum` | `0.999` | EMA momentum for teacher updates (`ema` / `partial_ema` modes only). Valid range: `[0.0, 1.0)` |
+| `teacher_update_interval` | `1` | Update EMA teacher every N optimizer steps |
+| `projector_hidden_multiplier` | `1` | Projector hidden width multiplier vs model inner dim |
+| `projector_lr` | `None` | Optional projector-specific learning rate. Defaults to `--learning_rate` when unset |
+| `loss_type` | `negative_cosine` | `negative_cosine` or `one_minus_cosine` |
+| `dual_timestep` | `true` | Enable dual-timestep noising |
+| `tokenwise_timestep` | `true` | Use per-token timesteps (otherwise per-sample averaged timestep) |
+| `offload_teacher_features` | `false` | Offload cached teacher features to CPU to reduce VRAM |
+| `offload_teacher_params` | `false` | Offload EMA teacher parameters to CPU (saves VRAM, slower teacher forward pass; `ema` / `partial_ema` only) |
+
+##### Notes
+
+- Supported mode: `--ltx2_mode video` only.
+- Cost: one extra teacher forward pass per train step. `teacher_mode=base` requires no extra VRAM since it reuses the existing model with LoRA multipliers zeroed.
+- Teacher modes: `base` gives the largest student-teacher gap (pretrained vs LoRA-finetuned); `ema` / `partial_ema` give a moving target that shrinks as training converges.
+- Temporal extension: when `temporal_mode != off`, Self-Flow reshapes hidden states into latent frames and adds frame-neighbor and/or frame-delta consistency losses on top of the base token alignment loss.
+- Granularity: `temporal_granularity=frame` uses mean-pooled per-frame features (cheaper, coarser). `temporal_granularity=patch` keeps spatial tokens for stronger temporal matching.
+- Local patch matching: when `temporal_granularity=patch` and `patch_spatial_radius > 0`, each student patch can align to the best teacher patch inside a local spatial window, which is more tolerant to small motion and camera drift than strict same-patch matching.
+- Soft matching: `patch_match_mode=soft` replaces hard local best-match selection with softmax-weighted neighborhood matching for smoother gradients.
+- Multi-step motion: `delta_num_steps > 1` extends the delta loss beyond adjacent frames using exponentially decayed step weights.
+- Motion-aware weighting: `motion_weighting=teacher_delta` upweights temporally active teacher regions, focusing the temporal loss on moving content.
+- Scheduling: `temporal_schedule`, `temporal_warmup_steps`, and `temporal_max_steps` apply to **all three** lambdas â `lambda_self_flow`, `lambda_temporal`, and `lambda_delta` â uniformly.
+- State files (Accelerate `*-state` folder): `self_flow_projector.safetensors`, `self_flow_teacher_ema.safetensors` (EMA state only saved when `teacher_mode=ema` or `partial_ema`).
+- Resume: both state files are loaded automatically when present. Loading EMA state with `teacher_mode=base` emits a warning and is ignored.
+- Logged metrics: `loss/self_flow`, `self_flow/cosine`, `self_flow/frame_cosine`, `self_flow/delta_cosine`, `self_flow/lambda_self_flow`, `self_flow/lambda_temporal`, `self_flow/lambda_delta`, `self_flow/masked_token_ratio`, `self_flow/tau_mean`, `self_flow/tau_min_mean`.
+
+#### Timestep Sampling
+- `--timestep_sampling shifted_logit_normal`: Default LTX-2 method. Uses a shifted logit-normal distribution where the shift is computed based on sequence length (frames à height à width).
+- `--timestep_sampling uniform`: Uniform sampling from [0, 1].
+- `--logit_std`: Standard deviation for the logit-normal distribution (default: 1.0). Only used with `shifted_logit_normal`.
+- `--min_timestep` / `--max_timestep`: Optional timestep range constraints.
+- `--shifted_logit_mode legacy|stretched`: Sigma sampler variant (default: auto by `--ltx_version`; 2.0â`legacy`, 2.3â`stretched`).
+ - `legacy`: `sigmoid(N(shift, std))`. Original behavior.
+ - `stretched`: Normalizes samples between the 0.5th and 99.9th percentiles of the distribution, reflects values below `eps` for numerical stability, and replaces a fraction of samples with uniform draws to prevent distribution collapse at high token counts.
+- `--shifted_logit_eps`: Reflection floor and uniform lower bound for `stretched` mode (default: `1e-3`).
+- `--shifted_logit_uniform_prob`: Fraction of samples replaced with uniform `[eps, 1]` draws (default: `0.1`).
+- `--shifted_logit_shift`: Override the auto-calculated shift value. Lower values (e.g., `0.0`) produce a symmetric distribution centered on medium noise (Ïâ0.5) for learning fine details. Higher values (e.g., `2.0`) heavily right-skew the distribution toward high noise (Ïâ0.9+) for learning global structure. If unset, it is auto-calculated from sequence length.
+
+> [!NOTE]
+> The `shifted_logit_normal` shift is linearly interpolated from 0.95 (at 1024 tokens) to 2.05 (at 4096 tokens) based on sequence length.
+> In `--ltx2_mode audio`, `shifted_logit_normal` still needs a sequence length to compute the shift, but there is no real video spatial dimension. Using full video resolution would inflate the sequence length and skew the shift upward. Instead, `--audio_only_sequence_resolution` (default `64`) provides a small fixed spatial footprint (4 tokens/frame), keeping the shift dominated by the temporal dimension (audio duration/FPS) which actually matters.
+
+#### LoRA Targets
+Use `--lora_target_preset` to control which layers LoRA targets:
+
+| Preset | Layers | Use Case |
+|--------|--------|----------|
+| `t2v` (default) | Attention only (`to_q`, `to_k`, `to_v`, `to_out.0`) | Text-to-video, matches official LTX-2 trainer |
+| `v2v` | Attention + FFN | Video-to-video / IC-LoRA style |
+| `audio` | Audio attention/FFN + audio-side cross-modal attention | Audio-only training (auto-selected when `--ltx2_mode audio`) |
+| `audio_ref_only_ic` | Audio attn/FFN + bidirectional AV cross-modal | Audio-reference IC-LoRA |
+| `full` | All linear layers | All layers targeted, larger file size |
+
+All presets apply to all relevant attention types: self-attention, cross-attention, and cross-modal attention (in AV mode). Connector layers are always excluded.
+
+To use custom layer patterns instead of a preset, use `--network_args`:
+```bash
+--network_args "include_patterns=['.*\.to_k$','.*\.to_q$','.*\.to_v$','.*\.to_out\.0$','.*\.ff\.net\.0\.proj$','.*\.ff\.net\.2$']"
+```
+Custom `include_patterns` override any preset.
+When `include_patterns` is set (either explicitly or via a preset), only modules matching at least one pattern are targeted (strict whitelist behavior). Use `--lora_target_preset full` to target all linear layers.
+
+#### IC-LoRA / Video-to-Video Training
+
+IC-LoRA (In-Context LoRA) trains the model to generate video conditioned on a reference image or video.
+
+Reference frames are encoded as clean latent tokens (timestep=0) and concatenated with noisy target tokens during training. The model attends across both sequences, using the reference as conditioning context. At inference, the same concatenation scheme is applied. Position embeddings are computed separately for reference and target, allowing different spatial resolutions via `--reference_downscale`.
+
+##### Step 1: Prepare Dataset
+
+Create a video dataset with a matching reference directory. Each reference file must share the same filename stem as its corresponding training video:
+
+```
+videos/ references/
+ scene_001.mp4 scene_001.png # reference for scene_001
+ scene_002.mp4 scene_002.jpg
+ scene_003.mp4 scene_003.mp4 # video references also work
+```
+
+References can be images (single frame) or videos (multiple frames).
+
+##### Step 2: Dataset Config
+
+Add `reference_directory` and `reference_cache_directory` to your TOML config:
+
+```toml
+[general]
+resolution = [768, 512]
+caption_extension = ".txt"
+batch_size = 1
+enable_bucket = true
+cache_directory = "cache"
+reference_cache_directory = "cache_ref"
+
+[[datasets]]
+video_directory = "videos"
+reference_directory = "references"
+target_frames = [1, 17, 33]
+```
+
+##### Step 3: Cache Latents
+
+Cache both video latents and reference latents in one step:
+
+```bash
+python ltx2_cache_latents.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --device cuda ^
+ --vae_dtype bf16
+```
+
+Reference latents are automatically cached to `reference_cache_directory` when `reference_directory` is configured.
+
+**Downscaled references** (`--reference_downscale`):
+```bash
+python ltx2_cache_latents.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --reference_downscale 2 ^
+ --device cuda
+```
+
+`--reference_downscale 2` encodes references at half spatial resolution (e.g., 384px for 768px target). Position embeddings on the reference spatial axes are scaled by the factor so they map into the target coordinate space.
+
+##### Step 4: Cache Text Encoder Outputs
+
+Same as standard training â no special flags needed:
+```bash
+python ltx2_cache_text_encoder_outputs.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --gemma_root /path/to/gemma ^
+ --gemma_load_in_8bit ^
+ --device cuda
+```
+
+##### Step 5: Train
+
+Use `--lora_target_preset v2v` (targets attention + FFN layers):
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --mixed_precision bf16 ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --fp8_base --fp8_scaled ^
+ --blocks_to_swap 10 ^
+ --sdpa ^
+ --gradient_checkpointing ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 32 --network_alpha 32 ^
+ --lora_target_preset v2v ^
+ --ltx2_first_frame_conditioning_p 0.2 ^
+ --timestep_sampling shifted_logit_normal ^
+ --learning_rate 1e-4 ^
+ --sample_at_first ^
+ --sample_every_n_epochs 5 ^
+ --sample_prompts sampling_prompts.txt ^
+ --sample_include_reference ^
+ --output_dir output ^
+ --output_name ltx2_ic_lora
+```
+
+If you used `--reference_downscale` during caching, also pass it during training:
+```bash
+ --reference_downscale 2
+```
+
+##### Step 6: Sample Prompts
+
+Use `--v ` in your sampling prompts file to specify the V2V reference for each prompt. Both images and videos are supported:
+
+```
+--v references/scene_001.png A woman walking through a forest --n blurry, low quality
+--v references/scene_002.mp4 A cat sitting on a windowsill --n distorted
+```
+
+The `--sample_include_reference` flag shows the reference side-by-side with the generated output in validation videos.
+
+##### IC-LoRA Arguments
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--reference_downscale` | 1 | Spatial downscale factor for references (1=same res, 2=half) |
+| `--reference_frames` | 1 | Number of reference frames for V2V (images are repeated to fill this count) |
+| `--ltx2_first_frame_conditioning_p` | 0.1 | Probability of also conditioning on the first target frame during training. No effect for single-frame (image) samples |
+| `--sample_include_reference` | off | Show reference side-by-side with generated output in sample videos |
+| `--lora_target_preset v2v` | â | Targets attention + FFN layers (recommended for IC-LoRA) |
+
+##### Dataset Config Options
+
+| Option | Type | Description |
+|--------|------|-------------|
+| `reference_directory` | string | Path to reference images/videos (matched by filename stem) |
+| `reference_cache_directory` | string | Output directory for cached reference latents |
+
+##### Notes
+
+- **First-frame conditioning** (`--ltx2_first_frame_conditioning_p`): Randomly conditions on the first target frame in addition to the reference. Only applied during training; inference always denoises the full target. Has no effect for single-frame (image-only) samples â the code skips conditioning when `num_frames == 1` since there are no subsequent frames to generate.
+- **Multi-frame references**: Supported but increase VRAM usage proportionally to the number of reference tokens.
+- **Multi-subject references**: The VAE compresses 8 frames into 1 temporal latent via `SpaceToDepthDownsample`, which pairs consecutive frames and averages their features. Subjects sharing the same 8-frame group are blended and lose individual identity. To keep N subjects separated, structure your reference video as: frame 1 = Subject A, frames 2â9 = Subject B (repeated 8Ã), frames 10â17 = Subject C (repeated 8Ã), etc. Total frames: `1 + 8Ã(Nâ1)`. Set `--reference_frames` to match. Frame 1 gets its own latent due to causal padding in the encoder; each subsequent 8-frame block produces one additional latent.
+- **Video-only**: IC-LoRA requires `--ltx2_mode video`. Audio-video mode is not supported for v2v training.
+- **Downscale factor metadata**: Saved in LoRA safetensors as `ss_reference_downscale_factor` when factor != 1.
+- **Two-stage inference**: Not supported with V2V; a warning is emitted and the reference is ignored.
+
+#### Audio-Reference IC-LoRA
+
+> This approach is based on [ID-LoRA](https://github.com/ID-LoRA/ID-LoRA), adapted for audio-video conditioning in the LTX-2 transformer.
+
+Trains a LoRA using in-context audio-reference conditioning. Reference audio latents (clean, timestep=0) are concatenated with noisy target audio latents during training. Loss is computed only on the target portion. In AV mode the LoRA targets audio self/cross-attention, audio FFN, and bidirectional audio-video cross-modal attention layers; in audio-only mode the `audio` preset is auto-selected, which omits cross-modal layers that connect to the (dummy) video branch.
+
+Supported modes:
+- **`--ltx2_mode av`** â full audio-video model; trains both video and audio IC-LoRA layers.
+- **`--ltx2_mode audio`** â audio-only mode; trains only audio layers (video is a dummy zero tensor). `--lora_target_preset audio` is auto-selected (cross-modal layers that affect the dummy video branch are omitted).
+
+##### How it works
+
+1. Reference audio is encoded to latents and concatenated with noisy target audio along the temporal axis.
+2. Reference tokens receive timestep=0 (no noise); target tokens receive the sampled sigma.
+3. Loss is masked to exclude the reference portion â the model only learns to predict the target.
+4. Three optional attention overrides control how the reference interacts with the rest of the model:
+ - **Negative positions**: shifts reference tokens into negative RoPE time, creating clean positional separation from target tokens.
+ - **A2V cross-attention mask**: blocks video from attending to reference audio (video syncs with target audio only).
+ - **Text attention mask**: blocks reference audio from attending to text (reference provides identity, not content).
+
+##### Step 1: Prepare Data
+
+Organize training videos with matching reference audio files (same filename stem):
+
+```
+videos/ reference_audio/
+ speaker_001.mp4 speaker_001.wav # reference clip for speaker_001
+ speaker_002.mp4 speaker_002.flac
+```
+
+Reference audio files are matched to training videos by filename stem.
+
+##### Step 2: Dataset Config
+
+```toml
+[general]
+resolution = [768, 512]
+caption_extension = ".txt"
+batch_size = 1
+enable_bucket = true
+cache_directory = "cache"
+reference_audio_cache_directory = "cache_ref_audio"
+separate_audio_buckets = true
+
+[[datasets]]
+video_directory = "videos"
+reference_audio_directory = "reference_audio"
+target_frames = [1, 17, 33]
+```
+
+##### Step 3: Cache Latents
+
+```bash
+python ltx2_cache_latents.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltxav-2.safetensors ^
+ --ltx2_mode av ^
+ --device cuda ^
+ --vae_dtype bf16
+```
+
+For audio-only mode, replace `--ltx2_mode av` with `--ltx2_mode audio` (no video latents are cached, only audio and reference audio latents).
+
+Reference audio latents are automatically cached to `reference_audio_cache_directory`.
+
+##### Step 4: Cache Text Encoder Outputs
+
+No special flags â use whichever mode you are training:
+
+```bash
+python ltx2_cache_text_encoder_outputs.py ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltxav-2.safetensors ^
+ --ltx2_mode av ^
+ --gemma_root /path/to/gemma ^
+ --gemma_load_in_8bit ^
+ --device cuda
+```
+
+For audio-only mode, replace `--ltx2_mode av` with `--ltx2_mode audio`.
+
+##### Step 5: Train
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --mixed_precision bf16 ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltxav-2.safetensors ^
+ --ltx2_mode av ^
+ --fp8_base --fp8_scaled ^
+ --blocks_to_swap 10 ^
+ --sdpa ^
+ --gradient_checkpointing ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 128 --network_alpha 128 ^
+ --lora_target_preset audio_ref_only_ic ^
+ --audio_ref_use_negative_positions ^
+ --audio_ref_mask_cross_attention_to_reference ^
+ --audio_ref_mask_reference_from_text_attention ^
+ --ltx2_first_frame_conditioning_p 0.9 ^
+ --timestep_sampling shifted_logit_normal ^
+ --learning_rate 2e-4 ^
+ --sample_at_first ^
+ --sample_every_n_epochs 5 ^
+ --sample_prompts sampling_prompts.txt ^
+ --output_dir output ^
+ --output_name ltx2_audio_ref_ic_lora
+```
+
+**Audio-only mode** â replace `--ltx2_mode av` with `--ltx2_mode audio` and omit `--lora_target_preset` (auto-selected as `audio`):
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --mixed_precision bf16 ^
+ --dataset_config dataset.toml ^
+ --ltx2_checkpoint /path/to/ltxav-2.safetensors ^
+ --ltx2_mode audio ^
+ --ic_lora_strategy audio_ref_only_ic ^
+ --fp8_base --fp8_scaled ^
+ --blocks_to_swap 10 ^
+ --sdpa ^
+ --gradient_checkpointing ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 128 --network_alpha 128 ^
+ --audio_ref_use_negative_positions ^
+ --audio_ref_mask_reference_from_text_attention ^
+ --timestep_sampling shifted_logit_normal ^
+ --learning_rate 2e-4 ^
+ --sample_at_first ^
+ --sample_every_n_epochs 5 ^
+ --sample_prompts sampling_prompts.txt ^
+ --output_dir output ^
+ --output_name ltx2_audio_ref_ic_lora_audioonly
+```
+
+##### Step 6: Sample Prompts
+
+Use `--ra ` in your sampling prompts file to specify the reference audio:
+
+```
+--ra reference_audio/speaker_001.wav A person speaking about nature --n blurry, low quality
+--ra reference_audio/speaker_002.flac A woman laughing in a park
+```
+
+Reference audio latents are precached automatically when using `--precache_sample_latents` during latent caching.
+
+##### Audio-Reference IC-LoRA Arguments
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--ic_lora_strategy audio_ref_only_ic` | auto | Activates audio-reference IC-LoRA mode (auto-inferred from `--lora_target_preset audio_ref_only_ic`) |
+| `--lora_target_preset audio_ref_only_ic` | â | Targets audio attn/FFN + bidirectional AV cross-modal layers |
+| `--audio_ref_use_negative_positions` | off | Place reference audio in negative RoPE time for positional separation |
+| `--audio_ref_mask_cross_attention_to_reference` | off | Block video from attending to reference audio tokens (AV mode only; no effect in audio-only mode) |
+| `--audio_ref_mask_reference_from_text_attention` | off | Block reference audio from attending to text tokens |
+| `--audio_ref_identity_guidance_scale` | 0.0 | Override CFG scale for target-audio branch during `audio_ref_only_ic` sampling (0 = use standard guidance scale) |
+
+##### Dataset Config Options
+
+| Option | Type | Description |
+|--------|------|-------------|
+| `reference_audio_directory` | string | Path to reference audio files (matched by filename stem) |
+| `reference_audio_cache_directory` | string | Output directory for cached reference audio latents |
+
+##### Notes
+
+- **Checkpoint**: requires an LTXAV checkpoint for both `--ltx2_mode av` and `--ltx2_mode audio`.
+- **Bucket separation**: `separate_audio_buckets = true` keeps audio/non-audio items in separate batches (avoids shape mismatches in collation).
+- **Attention overrides**: the three `--audio_ref_*` flags default to off. The reference ID-LoRA configuration enables all three.
+- **LoRA rank**: the reference ID-LoRA configuration uses rank 128 with alpha 128.
+- **First-frame conditioning**: the reference ID-LoRA configuration uses `first_frame_conditioning_p = 0.9`.
+- `--ic_lora_strategy auto` (default) infers the strategy from `--lora_target_preset` via `infer_ic_lora_strategy_from_preset()`.
+
+#### Sampling with Tiled VAE
+
+The prompt file format (`--sample_prompts`) â including guidance scale, negative prompt, and per-prompt inference parameters â is documented in the upstream [Sampling During Training guide](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/sampling_during_training.md). LTX-2 extends this with `--v ` (IC-LoRA reference) and `--ra ` (audio-reference IC-LoRA) prompt prefixes.
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--height` | 512 | Sample output height (pixels) |
+| `--width` | 768 | Sample output width (pixels) |
+| `--sample_num_frames` | 45 | Number of frames for sample video generation |
+| `--sample_with_offloading` | off | Offload DiT to CPU between sampling prompts to save VRAM |
+| `--sample_tiled_vae` | off | Enable tiled VAE decoding during sampling to reduce VRAM |
+| `--sample_vae_tile_size` | 512 | Spatial tile size (pixels) |
+| `--sample_vae_tile_overlap` | 64 | Spatial tile overlap (pixels) |
+| `--sample_vae_temporal_tile_size` | 0 | Temporal tile size in frames (0 = disabled) |
+| `--sample_vae_temporal_tile_overlap` | 8 | Temporal tile overlap (frames) |
+| `--sample_merge_audio` | off | Merge generated audio into the output `.mp4` |
+| `--sample_audio_only` | off | Generate audio-only preview outputs |
+| `--sample_disable_audio` | off | Disable audio preview generation during sampling |
+| `--sample_audio_subprocess` | on | Decode audio in a subprocess to avoid OOM crashes. Use `--no-sample_audio_subprocess` to decode in-process |
+| `--sample_disable_flash_attn` | off | Force SDPA instead of FlashAttention during sampling |
+| `--sample_i2v_token_timestep_mask` | on | Use I2V token timestep masking (conditioned tokens use t=0). Use `--no-sample_i2v_token_timestep_mask` to disable |
+
+#### Precached Sample Prompts
+To avoid loading Gemma during training for sample generation, you can precache the prompt embeddings:
+
+1. During text encoder caching, add `--precache_sample_prompts --sample_prompts sampling_prompts.txt` to also cache the sample prompt embeddings.
+2. During training, add `--use_precached_sample_prompts` (or `--precache_sample_prompts`) to load embeddings from cache instead of running Gemma.
+- `--sample_prompts_cache`: Path to the precached embeddings file. Defaults to `/ltx2_sample_prompts_cache.pt`.
+
+For IC-LoRA / V2V training, you can also precache the conditioning image latents during latent caching (see [Latent Caching Arguments](#latent-caching-arguments)):
+1. During latent caching, add `--precache_sample_latents --sample_prompts sampling_prompts.txt`.
+2. During training, add `--use_precached_sample_latents` to load conditioning latents from cache instead of loading the VAE encoder.
+- `--sample_latents_cache`: Path to the precached latents file. Defaults to `/ltx2_sample_latents_cache.pt`.
+
+#### Two-Stage Sampling (WIP)
+
+> [!NOTE]
+> This feature is work in progress and disabled by default. Two-stage inference generates at half resolution, then upsamples and refines.
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--sample_two_stage` | off | Enable two-stage inference during sampling |
+| `--spatial_upsampler_path` | â | Path to spatial upsampler model. Required when `--sample_two_stage` is set |
+| `--distilled_lora_path` | â | Path to distilled LoRA for stage 2 refinement. Optional |
+| `--sample_stage2_steps` | 3 | Number of denoising steps for stage 2 |
+
+#### Checkpoint Output Format
+
+Saved LoRA checkpoints are converted to ComfyUI format by default. Both the original musubi-tuner format and the ComfyUI format are kept.
+
+| Flag | Behavior |
+|------|----------|
+| *(default)* | Saves both `*.safetensors` (original) and `*.comfy.safetensors` (ComfyUI). |
+| `--no_save_original_lora` | Deletes the original after conversion, keeping only `*.comfy.safetensors`. |
+| `--no_convert_to_comfy` | Saves only the original `*.safetensors` (no conversion). |
+| `--save_checkpoint_metadata` | Saves a `.json` sidecar file alongside each checkpoint with loss, lr, step, and epoch. |
+
+> **Important:** Training can only be resumed from the **original** (non-comfy) checkpoint format. If you plan to use `--resume`, do not use `--no_save_original_lora`.
+
+Checkpoint rotation (`--save_last_n_epochs`) cleans up old ComfyUI checkpoints alongside originals. HuggingFace upload (`--huggingface_repo_id`) uploads both formats by default. Use `--no_save_original_lora` to upload only the ComfyUI checkpoint.
+
+#### Resuming Training
+
+Requires `--save_state` to be enabled. State directories contain optimizer, scheduler, and RNG states.
+
+| Flag | Description |
+|------|-------------|
+| `--resume ` | Resume from a specific state directory |
+| `--autoresume` | Automatically resume from the latest state in `output_dir`. Ignored if `--resume` is specified. Starts from scratch if no state is found |
+
+---
+
+## Merge LTX-2 LoRAs
+
+Use the dedicated LTX-2 LoRA merger to combine multiple LoRA files into a single LoRA checkpoint.
+
+**Script:** `ltx2_merge_lora.py`
+
+### Example Command (Windows)
+```bash
+python ltx2_merge_lora.py ^
+ --lora_weight path/to/lora_A.safetensors path/to/lora_B.safetensors ^
+ --lora_multiplier 1.0 1.0 ^
+ --save_merged_lora path/to/merged_lora.safetensors
+```
+
+### LoRA Merge Arguments
+- `--lora_weight`: Input LoRA paths to merge in order (required).
+- `--lora_multiplier`: Per-LoRA multipliers aligned with `--lora_weight`. Use one value to apply the same multiplier to all inputs.
+- `--save_merged_lora`: Output merged LoRA path (required).
+- `--merge_method concat|orthogonal`: Merge method (default: `concat`). `concat` keeps all ranks by concatenation. `orthogonal` uses SVD refactorization to merge exactly 2 LoRAs with orthogonal projection.
+- `--orthogonal_k_fraction`: Fraction of top singular directions projected out bilaterally before combining (default: `0.5`, range `[0, 1]`). Only used with `--merge_method orthogonal`.
+- `--orthogonal_rank_mode sum|max|min`: Target rank mode for orthogonal merge (default: `sum`).
+- `--dtype auto|float32|float16|bfloat16`: Output tensor dtype. `auto` promotes from input dtypes.
+- `--emit_alpha`: Force writing `.alpha` keys in output.
+
+### Notes
+- This merger is intended for LTX-2 LoRA formats used in this repo, including Comfy-style `lora_A/lora_B` weights.
+- It handles different ranks and partial module overlap across input LoRAs.
+- Orthogonal merge requires exactly 2 input LoRAs.
+
+---
+
+## Dataset Configuration
+
+The dataset config is a TOML file with `[general]` defaults and `[[datasets]]` entries. Common options shared across all musubi-tuner architectures â including `frame_extraction` modes, JSONL metadata format, control image support, and resolution bucketing â are documented in the upstream [Dataset Configuration guide](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/dataset_config.md). The options below are LTX-2-specific or supplement upstream defaults.
+
+### Video Dataset Options
+
+| Option | Type | Default | Description |
+|--------|------|---------|-------------|
+| `video_directory` | string | â | Path to video/image directory |
+| `video_jsonl_file` | string | â | Path to JSONL metadata file |
+| `resolution` | int or [int, int] | [960, 544] | Target resolution |
+| `target_frames` | [int] | [1] | List of target frame counts |
+| `frame_extraction` | string | `"head"` | Frame extraction mode |
+| `max_frames` | int | 129 | Maximum number of frames |
+| `source_fps` | float | auto-detected | Source video FPS. Auto-detected from video container metadata when not set. Use this to override auto-detection. |
+| `target_fps` | float | 25.0 | Target training FPS. Frames are resampled to this rate. When audio is present and the source video has a different FPS, the audio waveform is automatically time-stretched (pitch-preserving) to match the target video duration. |
+| `batch_size` | int | 1 | Batch size |
+| `num_repeats` | int | 1 | Dataset repetitions |
+| `enable_bucket` | bool | false | Enable resolution bucketing |
+| `bucket_no_upscale` | bool | false | Prevent upscaling when bucketing (only downscale to fit) |
+| `cache_directory` | string | â | Latent cache output directory |
+| `reference_directory` | string | â | Reference images/videos for IC-LoRA (matched by filename) |
+| `reference_cache_directory` | string | â | Output directory for cached reference latents (IC-LoRA) |
+| `reference_audio_directory` | string | â | Reference audio files for audio-reference IC-LoRA (matched by filename stem) |
+| `reference_audio_cache_directory` | string | â | Output directory for cached reference audio latents |
+| `separate_audio_buckets` | bool | false | Keep audio/non-audio items in separate batches |
+
+### Audio Dataset Options
+
+Audio-only datasets use `audio_directory` instead of `video_directory`.
+
+| Option | Type | Default | Description |
+|--------|------|---------|-------------|
+| `audio_directory` | string | â | Path to audio file directory |
+| `audio_jsonl_file` | string | â | Path to JSONL metadata file |
+| `audio_bucket_strategy` | string | `"pad"` | `"pad"` (round-to-nearest, pad + mask) or `"truncate"` (floor, clip to bucket length) |
+| `audio_bucket_interval` | float | 2.0 | Bucket step size in seconds |
+| `batch_size` | int | 1 | Batch size |
+| `num_repeats` | int | 1 | Dataset repetitions |
+| `cache_directory` | string | â | Latent cache output directory |
+
+### Example TOML
+
+```toml
+[general]
+resolution = [768, 512]
+caption_extension = ".txt"
+batch_size = 1
+enable_bucket = true
+cache_directory = "cache"
+
+[[datasets]]
+video_directory = "videos"
+target_frames = [1, 17, 33, 49]
+target_fps = 25 # optional, defaults to 25
+```
+
+### Frame Rate (FPS) Handling
+
+During latent caching, the source FPS is **auto-detected** from each video's container metadata and frames are resampled to `target_fps` (default: 25). The model receives video at the configured temporal rate regardless of the source material.
+
+#### How It Works
+
+1. For each video file, the source FPS is read from the container metadata (`average_rate` or `base_rate`).
+2. If `abs(ceil(source_fps) - target_fps) > 1`, frames are resampled (dropped) to match `target_fps`.
+3. If the difference is within this threshold (e.g., 23.976 â ceil=24 vs target 25, diff=1), no resampling is done â this avoids spurious frame drops from NTSC rounding (23.976, 29.97, 59.94, etc.).
+4. If audio is present (`--ltx2_mode av`), the audio waveform is automatically time-stretched (pitch-preserving) to match the resampled video duration.
+
+#### Common Scenarios
+
+**Default â no FPS config needed:**
+```toml
+[[datasets]]
+video_directory = "videos"
+target_frames = [1, 17, 33, 49]
+# source_fps: auto-detected per video
+# target_fps: defaults to 25
+```
+A 60fps video is resampled to 25fps. A 30fps video is resampled to 25fps. A 25fps video is passed through as-is. Mixed-FPS datasets work correctly â each video is resampled independently.
+
+**Training at a non-standard frame rate (e.g., 60fps):**
+```toml
+[[datasets]]
+video_directory = "videos_60fps"
+target_frames = [1, 17, 33, 49]
+target_fps = 60
+```
+Set `target_fps` to the desired training rate. Videos at 60fps (or 59.94fps) pass through without resampling. Videos at other frame rates are resampled to 60fps.
+
+**Overriding auto-detection (e.g., variable frame rate videos):**
+```toml
+[[datasets]]
+video_directory = "videos"
+target_frames = [1, 17, 33, 49]
+source_fps = 30
+```
+If auto-detection gives wrong results (common with variable frame rate / VFR recordings from phones), set `source_fps` explicitly. This applies to **all** videos in that dataset entry, so group videos by FPS into separate `[[datasets]]` blocks if needed.
+
+**Image directories:**
+
+Image directories have no FPS metadata. No resampling is applied â all images are loaded as individual frames regardless of `target_fps`.
+
+#### Log Messages
+
+During latent caching, log messages confirm what's happening for each video:
+```
+Auto-detected source FPS: 60.00 for my_video.mp4
+Resampling my_video.mp4: 60.00 FPS -> 25.00 FPS
+```
+If you see **no** "Resampling" line for a video, it means source and target FPS were close enough (within 1 FPS after rounding up the source) and all frames were kept as-is. If you see unexpected frame counts in your cached latents, check these log lines first.
+
+#### Quick Reference
+
+| Your situation | What to set | What happens |
+|---|---|---|
+| Mixed FPS dataset, want 25fps training | Nothing (defaults work) | Each video auto-detected, resampled to 25fps |
+| All videos are 25fps | Nothing | Auto-detected as 25fps, no resampling |
+| All videos are 60fps, want 60fps training | `target_fps = 60` | Auto-detected as 60fps, no resampling |
+| All videos are 60fps, want 25fps training | Nothing | Auto-detected as 60fps, resampled to 25fps |
+| VFR videos with wrong detection | `source_fps = 30` (your actual FPS) | Overrides auto-detection |
+| Image directory | Nothing | No FPS concept, all images loaded |
+
+---
+
+## Validation Datasets
+
+You can configure a separate validation dataset to track validation loss (`val_loss`) during training. This helps detect overfitting and compare training runs. Validation datasets use **exactly the same schema** as training datasets â any format that works for `[[datasets]]` works for `[[validation_datasets]]`.
+
+### Configuration
+
+Add a `[[validation_datasets]]` section to your existing TOML config file:
+
+```toml
+[general]
+resolution = [768, 512]
+caption_extension = ".txt"
+batch_size = 1
+enable_bucket = true
+
+# Training data
+[[datasets]]
+video_directory = "videos/train"
+cache_directory = "cache/train"
+target_frames = [1, 17, 33, 49]
+
+# Validation data
+[[validation_datasets]]
+video_directory = "videos/val"
+cache_directory = "cache/val"
+target_frames = [1, 17, 33, 49]
+```
+
+The `cache_directory` for validation must be different from the training cache directory.
+
+### Caching
+
+Validation datasets are automatically picked up by the caching scripts â no extra flags needed. Run the same caching commands you use for training:
+
+```bash
+python ltx2_cache_latents.py --dataset_config dataset.toml --ltx2_checkpoint /path/to/ltx-2.safetensors --ltx2_mode av ...
+python ltx2_cache_text_encoder_outputs.py --dataset_config dataset.toml --ltx2_checkpoint /path/to/ltx-2.safetensors --ltx2_mode av ...
+```
+
+Both scripts detect the `[[validation_datasets]]` section and cache latents/text embeddings for validation data alongside training data.
+
+### Training Arguments
+
+| Argument | Type | Default | Description |
+|----------|------|---------|-------------|
+| `--validate_every_n_steps` | int | None | Run validation every N training steps |
+| `--validate_every_n_epochs` | int | None | Run validation every N epochs |
+
+At least one of these must be set for validation to run. If neither is set, validation is skipped even if `[[validation_datasets]]` is configured.
+
+### Example
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_network.py ^
+ --dataset_config dataset.toml ^
+ --validate_every_n_steps 100 ^
+ ... (other training args)
+```
+
+### How It Works
+
+1. A separate validation dataloader is created with `batch_size=1` and `shuffle=False` (deterministic order).
+2. At the configured interval, the model switches to eval mode and runs inference on all validation samples with `torch.no_grad()`.
+3. The average MSE loss is computed and logged as `val_loss` to TensorBoard/WandB.
+4. The model is restored to training mode and training continues.
+
+### Tips
+
+- **Keep validation sets small.** Aim for 5-20% of your main dataset size. Validation runs on every sample each time, so 10-50 clips is usually enough. Large validation sets slow down training.
+- **Use held-out data.** Validation data should be different from the training set for meaningful overfitting detection. In extreme cases, using a small subset of the training data is acceptable â it will still help catch divergence, but won't reliably detect overfitting.
+- **Monitor the gap.** If `val_loss` starts increasing while training loss keeps decreasing, you're overfitting â consider stopping or reducing the learning rate.
+- **Same preprocessing.** Validation data goes through the same frame extraction, FPS resampling, and resolution bucketing as training data.
+
+---
+
+## Directory Structure
+
+### Raw Dataset Layout (Example)
+```
+dataset_root/
+ videos/
+ 000001.mp4
+ 000001.txt # caption
+ 000002.mp4
+ 000002.txt
+```
+
+### Cache Directory Layout (After Caching)
+```
+cache_directory/
+ 000001_1024x0576_ltx2.safetensors # video latents
+ 000001_ltx2_te.safetensors # text encoder outputs
+ 000001_ltx2_audio.safetensors # audio latents (av mode only)
+ 000001_1024x0576_ltx2_dino.safetensors # DINOv2 features (CREPA dino mode only)
+
+reference_cache_directory/ # IC-LoRA only
+ 000001_1024x0576_ltx2.safetensors # reference latents
+```
+
+---
+
+## Troubleshooting
+
+| Error | Cause | Solution |
+|-------|-------|----------|
+| Missing cache keys during training | Caching incomplete | Run both `ltx2_cache_latents.py` and `ltx2_cache_text_encoder_outputs.py` |
+| FlashAttention varlen mask-length mismatch (for example `expects mask length 1920, got 1024`) after checkpoint switch | Stale text cache from a different checkpoint/version/mode | Re-run `ltx2_cache_text_encoder_outputs.py` with the same `--ltx2_checkpoint` and `--ltx2_mode` as training. Remove old `*_ltx2_te.safetensors` if needed. |
+| Samples become progressively noisier/degraded when training with `--flash_attn` | FlashAttention install/runtime mismatch (CUDA/PyTorch/flash-attn build) | Switch to `--sdpa` to confirm baseline stability. If SDPA is stable, reinstall FlashAttention for your exact CUDA + PyTorch versions and retry. |
+| Training fails after changing `--ltx2_checkpoint` even though args look correct | Reused latent/text caches generated from a different checkpoint | Re-run both caches (`ltx2_cache_latents.py` and `ltx2_cache_text_encoder_outputs.py`) and regenerate `--dataset_manifest` before training. |
+| OOM appears after removing `--fp8_base` while using an FP8 checkpoint | Base model no longer uses FP8 loading path, so VRAM increases sharply | Keep `--fp8_base` enabled for FP8 checkpoints (typically with `--mixed_precision bf16`) |
+| Error when combining `--fp8_scaled` with an FP8 checkpoint | `--fp8_scaled` is for quantizing non-FP8 checkpoints | Remove `--fp8_scaled`; keep `--fp8_base` |
+| Missing `*_ltx2_audio.safetensors` | Audio caching skipped | Re-run latent caching with `--ltx2_mode av` |
+| Gemma connector weights missing | Incorrect checkpoint | Ensure `--ltx2_checkpoint` (or `--ltx2_text_encoder_checkpoint`) contains Gemma connector weights |
+| Gemma OOM | Model too large | Use `--gemma_load_in_8bit` or `--gemma_load_in_4bit` with `--device cuda`, or use `--gemma_safetensors` with an FP8 file |
+| Audio caching fails | torchaudio missing | Install torchaudio before running `ltx2_cache_latents.py` |
+| Sampling OOM | VAE decode too large | Enable `--sample_tiled_vae` or reduce `--sample_vae_temporal_tile_size` |
+| Crash with block swap (esp. RTX 5090) | `--use_pinned_memory_for_block_swap` bug | Remove `--use_pinned_memory_for_block_swap` from training arguments |
+| `stack expects each tensor to be equal size` during AV training | Mixed audio/non-audio videos in the same batch â text embeddings are 2Ã`caption_channels` for AV items vs 1Ã`caption_channels` for video-only (e.g., 7680 vs 3840 for LTX-2.3), and `torch.stack` fails | Add `--separate_audio_buckets` to training args. Required when your dataset mixes videos with and without audio at `batch_size > 1`. At `batch_size=1` it has no effect. |
+| Wrong frame count in cached latents | Auto-detected FPS incorrect (e.g., VFR video) | Set `source_fps` explicitly in TOML config to override auto-detection |
+| Too few frames from high-FPS video | FPS resampling working correctly (e.g., 60fpsâ25fps = 42% of frames) | Expected behavior. Set `target_fps = 60` if you want to keep all frames |
+| Audio/video out of sync after caching | Source FPS mismatch causing wrong time-stretch | Check "Auto-detected source FPS" log line; set `source_fps` explicitly if wrong |
+| Voice/audio learning slow when mixing images with videos in AV mode | Image batches produce zero audio training signal â audio branch is skipped entirely. Dilutes audio learning proportionally to image step fraction | Use video-only datasets for AV training when voice quality matters |
+| No audio during sampling in video training mode | `ltx2_mode` is set to `v`/`video` | Expected behavior. Train in AV mode (`--ltx2_mode av` or `audio`) to generate audio during sampling |
+| Cannot resume training from checkpoint | Using a `*.comfy.safetensors` checkpoint with `--resume` | Training can only be resumed from the **original** (non-comfy) LoRA format. Use the `*.safetensors` file without the `.comfy` extension. If you used `--no_save_original_lora`, you must retrain from scratch. |
+| CUDA errors or crashes on RTX 5090 / 50xx GPUs | CUDA 12.6 (`cu126`) not supported on Windows for Blackwell GPUs | Use CUDA 12.8: `pip install torch==2.8.0 ... --index-url https://download.pytorch.org/whl/cu128`. See [CUDA Version](#cuda-version) |
+| `ValueError: Gemma safetensors is missing required language-model tensors` with `missing_buffers` mentioning `full_attention_inv_freq` or `sliding_attention_inv_freq` | `transformers>=5.0` renamed Gemma3 rotary embedding buffers (`rotary_emb.inv_freq` â `rotary_emb.full_attention_inv_freq` / `sliding_attention_inv_freq`). The derivable-buffer suffix check expects `.inv_freq` and does not match the new `_inv_freq` suffix. The safetensors file is correct â rotary buffers are non-persistent and computed from config at init time. | `pip install transformers==4.56.1` (pinned in `pyproject.toml`), or reinstall all deps with `pip install -e .` |
+| `loss_a` too low but `loss_v` still high (audio overfitting) | Audio latent space converges faster than video; audio gradients dominate shared weights | Lower `--audio_loss_weight` (e.g., 0.3), or use `--audio_loss_balance_mode ema_mag` to auto-dampen audio when it exceeds `target_ratio à video_loss`. Reduce audio learning rate with `--audio_lr 1e-6` or fine-grained `--lr_args audio_attn=1e-6 audio_ff=1e-6`. Disable `--audio_dop` / `--audio_silence_regularizer` if active â they add more audio signal. |
+| `loss_a` absent or not dropping in mixed dataset (audio starvation) | Audio batches too rare â non-audio steps outnumber audio steps, audio branch gets insufficient supervision | Increase `num_repeats` on audio datasets (target 30-50% audio steps). Add `--audio_loss_balance_mode inv_freq` to auto-boost audio weight. Use `--audio_dop` or `--audio_silence_regularizer` to provide audio signal on non-audio steps. Check caching summary for `failed > 0`. |
+
+### Audio/Voice Training with Mixed Datasets
+
+In mixed datasets, audio batches are a minority. Non-audio steps update shared transformer weights without audio supervision, causing audio drift. Mitigations:
+
+**1. Oversample audio items** â set `num_repeats` so audio batches are 30-50% of steps:
+```toml
+[[datasets]]
+video_directory = "audio_video_clips"
+num_repeats = 5
+```
+
+**2. `--audio_dop`** â preserves base model audio predictions on non-audio steps. Runs LoRA OFF/ON forwards on silence audio latents, MSE on audio branch only. +2 fwd / +1 bwd per non-audio step, zero cost on audio batches. Logged as `loss/audio_dop`. Mutually exclusive with `--audio_silence_regularizer`.
+```
+--audio_dop --audio_dop_args multiplier=0.5
+```
+
+**3. `--dop`** â preserves all base model outputs (video + audio) using a class prompt. Broader than audio DOP but applies to every step. +2 fwd / +1 bwd per step.
+```
+--dop --dop_args multiplier=0.5
+```
+
+**4. `--audio_silence_regularizer`** â converts non-audio batches to audio batches with silence target. Cheaper than DOP (+0 extra forwards) but silence is an approximation.
+```
+--audio_silence_regularizer --audio_silence_regularizer_weight 0.5
+```
+
+**5. Inverse-frequency loss balancing** â auto-boosts audio loss weight proportional to audio batch rarity:
+```
+--audio_loss_balance_mode inv_freq --audio_loss_balance_min 0.05 --audio_loss_balance_max 4.0
+```
+Alternative: `--audio_loss_balance_mode ema_mag` matches audio loss magnitude to a target fraction of video loss.
+
+**6. Diagnostics**
+
+- If `failed > 0` in latent caching summary, audio extraction is broken for those items
+- After mode switch (videoâAV), re-run both latent and text encoder caching without `--skip_existing`
+- `loss_a` dropping = audio learning; absent/zero = no audio batches forming; degrades over time = forgetting
+
+### Technical Notes
+
+- **Float32 AdaLN**: The transformer applies Adaptive Layer Norm (AdaLN) shift/scale operations in float32, then casts back to the working dtype. This prevents overflow that can occur when bf16 scale values multiply bf16 hidden states. The fix is always active and requires no flags.
+- **Loss dtype**: The LTX-2 training path computes the task loss (MSE, L1, Huber) in `trainer.dit_dtype` (typically bf16 with `--mixed_precision bf16`). Internal regularization losses (motion preservation, CREPA, Self-Flow) always use MSE and are unaffected by `--loss_type`.
+
+---
+
+## 4. Slider LoRA Training
+
+> Slider LoRA training is based on the [ai-toolkit](https://github.com/ostris/ai-toolkit) implementation by ostris, adapted for LTX-2.
+
+Slider LoRAs learn a controllable direction in model output space (e.g., "detailed" vs "blurry"). At inference, you scale the LoRA multiplier to control the effect strength and direction: `+1.0` enhances, `-1.0` erases, `0.0` is the base model, and values like `+2.0` or `-0.5` work too.
+
+**Script:** `ltx2_train_slider.py`
+
+Two modes are available:
+
+| Mode | Input | Use Case |
+|------|-------|----------|
+| `text` | Prompt pairs only (no dataset) | Sliders from text prompt pairs, no images needed |
+| `reference` | Pre-cached latent pairs | Sliders from paired positive/negative image samples |
+
+### 4a. Text-Only Mode
+
+Learns a slider direction from positive/negative prompt pairs. No images or dataset config needed.
+
+#### Slider Config (`ltx2_slider.toml`)
+
+```toml
+mode = "text"
+guidance_strength = 1.0
+sample_slider_range = [-2.0, -1.0, 0.0, 1.0, 2.0]
+
+[[targets]]
+positive = "extremely detailed, sharp, high resolution, 8k"
+negative = "blurry, out of focus, low quality, soft"
+target_class = "" # empty = affect all content
+weight = 1.0
+```
+
+- `guidance_strength`: Scales the directional offset applied to targets. Higher values = stronger direction signal but may overshoot.
+- `target_class`: The conditioning prompt used during training passes. Empty string means the slider affects all content regardless of prompt. Set to e.g. `"a portrait"` to restrict the slider's effect to a specific subject.
+- `weight`: Per-target loss weight. Controls relative emphasis when training multiple directions simultaneously.
+- `sample_slider_range`: Multiplier values used for preview samples during training.
+
+Multiple `[[targets]]` blocks can be defined to train several directions at once (e.g., detail + lighting).
+
+#### Example Command (Text-Only)
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_slider.py ^
+ --mixed_precision bf16 ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --gemma_root /path/to/gemma ^
+ --gemma_load_in_8bit ^
+ --fp8_base --fp8_scaled ^
+ --gradient_checkpointing ^
+ --blocks_to_swap 10 ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 16 --network_alpha 16 ^
+ --lora_target_preset t2v ^
+ --learning_rate 1e-4 ^
+ --optimizer_type AdamW8bit ^
+ --lr_scheduler constant_with_warmup --lr_warmup_steps 20 ^
+ --max_train_steps 500 ^
+ --output_dir output --output_name detail_slider ^
+ --slider_config ltx2_slider.toml ^
+ --latent_frames 1 ^
+ --latent_height 512 --latent_width 768
+```
+
+#### Text-Only Arguments
+
+| Argument | Default | Description |
+|----------|---------|-------------|
+| `--slider_config` | (required) | Path to slider TOML config file |
+| `--latent_frames` | 1 | Number of latent frames (1=image, >1=video) |
+| `--latent_height` | 512 | Pixel height for synthetic latents |
+| `--latent_width` | 768 | Pixel width for synthetic latents |
+| `--guidance_strength` | (from TOML) | Override `guidance_strength` from config |
+| `--sample_slider_range` | (from TOML) | Override as comma-separated values, e.g. `"-2,-1,0,1,2"` |
+
+All standard training arguments (`--fp8_base`, `--blocks_to_swap`, `--gradient_checkpointing`, etc.) work the same as regular training. `--dataset_config` is not needed for text-only mode.
+
+### 4b. Reference Mode
+
+Learns a slider direction from paired positive/negative images (or videos). Requires pre-cached latents.
+
+#### Step 1: Prepare Paired Data
+
+Create two directories with matching filenames â one with positive-attribute images, one with negative:
+
+```
+positive_images/ negative_images/
+ img_001.png img_001.png # same subject, different attribute
+ img_002.png img_002.png
+ img_003.png img_003.png
+```
+
+Each positive image must have a corresponding negative image with the same filename. The images should depict the same subject but differ in the target attribute (e.g., smiling vs neutral face, detailed vs blurry).
+
+#### Step 2: Cache Latents and Text
+
+Create a dataset config for each directory and run the caching scripts. Both directories can share the same text captions (since the direction comes from the images, not the text).
+
+```bash
+# Cache positive latents
+python ltx2_cache_latents.py --dataset_config positive_dataset.toml --ltx2_checkpoint /path/to/ltx-2.safetensors
+
+# Cache negative latents
+python ltx2_cache_latents.py --dataset_config negative_dataset.toml --ltx2_checkpoint /path/to/ltx-2.safetensors
+
+# Cache text (once, for either directory â text is shared)
+python ltx2_cache_text_encoder_outputs.py --dataset_config positive_dataset.toml --ltx2_checkpoint /path/to/ltx-2.safetensors --gemma_root /path/to/gemma
+```
+
+#### Step 3: Configure and Train
+
+##### Slider Config (`ltx2_slider_reference.toml`)
+
+```toml
+mode = "reference"
+pos_cache_dir = "path/to/positive/cache"
+neg_cache_dir = "path/to/negative/cache"
+text_cache_dir = "path/to/positive/cache" # can be same as pos (text is shared)
+sample_slider_range = [-2.0, -1.0, 0.0, 1.0, 2.0]
+```
+
+- `pos_cache_dir`: Directory containing cached positive latents (output of `ltx2_cache_latents.py`)
+- `neg_cache_dir`: Directory containing cached negative latents
+- `text_cache_dir`: Directory containing cached text encoder outputs. Defaults to `pos_cache_dir` if omitted.
+
+Pairs are matched by filename: for each `{name}_{W}x{H}_ltx2.safetensors` in the positive directory, a matching file must exist in the negative directory. Unmatched files are skipped with a warning.
+
+##### Example Command (Reference)
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 ltx2_train_slider.py ^
+ --mixed_precision bf16 ^
+ --ltx2_checkpoint /path/to/ltx-2.safetensors ^
+ --fp8_base --fp8_scaled ^
+ --gradient_checkpointing ^
+ --blocks_to_swap 10 ^
+ --network_module networks.lora_ltx2 ^
+ --network_dim 16 --network_alpha 16 ^
+ --lora_target_preset t2v ^
+ --learning_rate 1e-4 ^
+ --optimizer_type AdamW8bit ^
+ --lr_scheduler constant_with_warmup --lr_warmup_steps 20 ^
+ --max_train_steps 500 ^
+ --output_dir output --output_name smile_slider ^
+ --slider_config ltx2_slider_reference.toml
+```
+
+Note: `--gemma_root` is not needed for reference mode (text embeddings are loaded from cache). `--dataset_config`, `--latent_frames/height/width` are also not used.
+
+### Slider Tips
+
+- **Start small**: `--network_dim 8` or `16` with `--max_train_steps 200-500` is usually sufficient.
+- **Monitor loss**: Loss should decrease steadily. If it diverges, reduce `--learning_rate`.
+- **Preview samples**: Add `--sample_prompts sampling_prompts.txt --sample_every_n_steps 50` to generate previews at each slider strength during training. Requires `--gemma_root` for text encoding.
+- **Guidance strength**: For text-only mode, the default is `1.0`. Values of `2.0-3.0` increase direction strength but may reduce convergence stability.
+- **Multiple targets**: Text-only mode supports multiple `[[targets]]` blocks. Each step randomly selects one target, so all directions get trained evenly.
+- **Inference**: Use the trained LoRA with any multiplier value. Positive multipliers enhance the positive attribute, negative multipliers enhance the negative attribute. Values beyond `[-1, +1]` extrapolate the effect.
+
+---
+
+## References
+
+**Upstream musubi-tuner Documentation**
+- [Dataset Configuration](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/dataset_config.md) â TOML format, `frame_extraction` modes, JSONL metadata, control images, resolution bucketing
+- [Sampling During Training](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/sampling_during_training.md) â Prompt file format, per-prompt guidance scale, negative prompts, sampling CLI flags
+- [Advanced Configuration](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/advanced_config.md) â `--config_file` TOML training configuration, `--network_args` format, LoRA+, TensorBoard/WandB logging, PyTorch Dynamo, timestep bucketing, Schedule-Free optimizer
+- [LyCORIS Algorithm List](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Algo-List.md) and [Guidelines](https://github.com/KohakuBlueleaf/LyCORIS/blob/main/docs/Guidelines.md) â LoKR, LoHA, LoCoN and other algorithm details (used via `pip install lycoris-lora`)
+- [Tools](https://github.com/kohya-ss/musubi-tuner/blob/main/docs/tools.md) â Post-hoc EMA LoRA merging, image captioning with Qwen2.5-VL
+
+**Research**
+- [ID-LoRA](https://github.com/ID-LoRA/ID-LoRA) â In-context identity LoRA; the audio-reference IC-LoRA implementation in this trainer is based on this approach
+- [CREPA (arXiv 2506.09229)](https://arxiv.org/abs/2506.09229) â Cross-frame Representation Alignment; basis for `--crepa dino` mode (DINOv2 teacher from neighboring frames)
+- [Self-Flow (arXiv 2603.06507)](https://arxiv.org/abs/2603.06507) â Self-supervised flow matching regularization; basis for `--self_flow`
+
+**Official LTX Resources**
+- [LTX-2](https://github.com/Lightricks/LTX-2) â Official Lightricks LTX-2/2.3 repository; contains the well-structured `ltx-trainer` and `ltx-pipelines` packages that served as the upstream source and reference for this implementation
+- [LTX-Video](https://github.com/Lightricks/LTX-Video) â Official Lightricks model repository (inference, ComfyUI nodes, model weights)
+- [LTX Documentation](https://docs.ltx.video/open-source-model/getting-started/overview) â Unified docs hub: open-source model, API reference, ComfyUI integration, LoRA usage, and LTX-2 trainer guide
+
+**Alternative Trainers**
+- [ai-toolkit](https://github.com/ostris/ai-toolkit) (ostris) â General diffusion fine-tuning toolkit with LTX-2 LoRA support; slider LoRA training is based on its implementation
+- [SimpleTuner](https://github.com/bghira/SimpleTuner) â Multi-model fine-tuning framework with LTX-2 support; `--crepa backbone` mode is inspired by its LayerSync regularizer
+- [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio) â ModelScope diffusion synthesis framework with LTX-2/2.3 support
+
+**Community Resources**
+- [awesome-ltx2](https://github.com/wildminder/awesome-ltx2) â Curated list of LTX-2 resources, tools, models, and guides
+- [Banodoco Discord](https://discord.gg/banodoco) â Active AI video generation community; discussions on LTX-2 training, workflows, and research
+- [Windows Installation Guide](https://github.com/AkaneTendo25/musubi-tuner/discussions/19) â Windows-specific setup (Python 3.12, CUDA, Flash Attention 2), dependencies, troubleshooting
+- [LTX-2 Training Optimizers](https://github.com/AkaneTendo25/musubi-tuner/discussions/21) â Optimizer comparison for LTX-2 training: AdamW, Prodigy, Muon, CAME, and recommended settings
+- [LTX-2 Audio Dataset Builder](https://github.com/dorpxam/LTX-2-Audio-Dataset-Builder) â Tool to automate audio dataset creation: transforms raw audio into clean, captioned segments optimized for LTX-2 audio-only training
+
+**Tutorials & Guides**
+- [LTX-2 LoRA Training Complete Guide](https://apatero.com/blog/ltx-2-lora-training-fine-tuning-complete-guide-2025) (Apatero) â Dataset preparation, training configuration, and LoRA deployment walkthrough
+- [How to Train a LTX-2 Character LoRA](https://ghost.oxen.ai/how-to-train-a-ltx-2-character-lora-with-oxen-ai/) (Oxen.ai) â Character-consistency LoRA training with dataset prep tips for audio clips
+
+**Cloud Platforms**
+- [fal.ai LTX-2 Trainer](https://fal.ai/models/fal-ai/ltx2-video-trainer) â Cloud-based LTX-2 LoRA training via API (~$0.005/step)
+- [WaveSpeedAI LTX-2](https://wavespeed.ai/landing/ltx2) â Hosted LTX-2 inference (T2V, I2V, video extend, lipsync)
+
diff --git a/docs/qwen_image.md b/docs/qwen_image.md
new file mode 100644
index 0000000000000000000000000000000000000000..124a93233d21a1822fabafe736fe49db202b3dd9
--- /dev/null
+++ b/docs/qwen_image.md
@@ -0,0 +1,618 @@
+# Qwen-Image
+
+## Overview / æŠèŠ
+
+This document describes the usage of the Qwen-Image and Qwen-Image-Edit/Edit-2509/Edit-2511/Layered architecture within the Musubi Tuner framework. Qwen-Image is a text-to-image generation model that supports standard text-to-image generation, and Qwen-Image-Edit is a model that supports image editing with control images, Layered is a model that supports image layer segmentation.
+
+Qwen-Image-Edit-2509/2511 can use multiple control images simultaneously. While the official version supports up to 3 images, Musubi Tuner allows specifying any number of images (though correct operation is confirmed only up to 3). Additionally, the sizes of the control images can differ (both during training and inference).
+
+This feature is experimental.
+
+Latent pre-caching, training, and inference options can be found in the `--help` output. Many options are shared with HunyuanVideo, so refer to the [HunyuanVideo documentation](./hunyuan_video.md) as needed.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã¯ãMusubi Tunerãã¬ãŒã ã¯ãŒã¯å
ã§ã®Qwen-ImageãQwen-Image-Edit/Edit-2509/Edit-2511/Layeredã¢ãŒããã¯ãã£ã®äœ¿çšæ³ã«ã€ããŠèª¬æããŠããŸããQwen-Imageã¯æšæºçãªããã¹ãããç»åçæã¢ãã«ã§ãQwen-Image-Editã¯å¶åŸ¡ç»åã䜿ã£ãç»åç·šéããµããŒãããã¢ãã«ãLayeredã¯ç»åã®ã¬ã€ã€ãŒåå²ããµããŒãããã¢ãã«ã§ãã
+
+Qwen-Image-Edit-2509/2511ã¯ãè€æ°æã®å¶åŸ¡ç»åãåæã«äœ¿çšã§ããŸããå
¬åŒã§ã¯3æãŸã§ã§ãããMusubi Tunerã§ã¯ä»»æã®ææ°ãæå®ã§ããŸãïŒæ£ããåäœããã®ã¯3æãŸã§ã§ãïŒããŸãããããã®å¶åŸ¡ç»åã®ãµã€ãºã¯ç°ãªã£ãŠããŠãåé¡ãããŸããïŒåŠç¿æãæšè«æãšãïŒã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+äºåãã£ãã·ã³ã°ãåŠç¿ãæšè«ã®ãªãã·ã§ã³ã¯`--help`ã§ç¢ºèªããŠãã ãããHunyuanVideoãšå
±éã®ãªãã·ã§ã³ãå€ããããŸãã®ã§ãå¿
èŠã«å¿ããŠ[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md)ãåç
§ããŠãã ããã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+You need to download the DiT, VAE, and Text Encoder (Qwen2.5-VL) models.
+
+Official weights from [Qwen's official weights](https://huggingface.co/Qwen) can be used for DiT, Text Encoder, and VAE respectively. If you want to use the weights for ComfyUI, please follow below.
+
+- **Qwen-Image DiT, Text Encoder (Qwen2.5-VL)**: For Qwen-Image DiT and Text Encoder, download `split_files/diffusion_models/qwen_image_bf16.safetensors` and `split_files/text_encoders/qwen_2.5_vl_7b.safetensors` from https://huggingface.co/Comfy-Org/Qwen-Image_ComfyUI, respectively. **The fp8_scaled version cannot be used.**
+
+- **VAE**: For VAE, download `split_files/vae/qwen_image_vae.safetensors` similarly from https://huggingface.co/Comfy-Org/Qwen-Image-Edit_ComfyUI. ComfyUI's VAE weights are also now usable.
+
+- **Qwen-Image-Edit DiT**: For Qwen-Image-Edit DiT, download `split_files/diffusion_models/qwen_image_edit_bf16.safetensors`, or for Edit-2509, download `split_files/diffusion_models/qwen_image_edit_2509_bf16.safetensors`, and for Edit-2511, download similar from https://huggingface.co/Comfy-Org/Qwen-Image-Edit_ComfyUI. **fp8_e4m3fn cannot be used.** Text Encoder and VAE are same as Qwen-Image.
+
+- **Qwen-Image-Layered VAE**: For Qwen-Image-Layered VAE, download `split_files/vae/qwen_image_layered_vae.safetensors` from https://huggingface.co/Comfy-Org/Qwen-Image-Layered_ComfyUI.
+
+- **Qwen-Image-Layered DiT**: For Qwen-Image-Layered DiT, download `split_files/diffusion_models/qwen_image_layered_bf16.safetensors` from https://huggingface.co/Comfy-Org/Qwen-Image-Layered_ComfyUI. **fp8mixed cannot be used.** Text Encoder is same as Qwen-Image.
+
+Thanks to Comfy-Org for releasing these weights.
+
+
+æ¥æ¬èª
+
+DiT, VAE, Text Encoder (Qwen2.5-VL) ã®ã¢ãã«ãããŠã³ããŒãããå¿
èŠããããŸãã
+
+DiTãText EncoderãVAEã®ããããã«ã[Qwenã®å
¬åŒã®éã¿](https://huggingface.co/Qwen)ã䜿çšå¯èœã§ããComfyUIçšã®éã¿ã䜿çšããå Žåã¯ã以äžã®éãã§ãã
+- **DiT, Text Encoder (Qwen2.5-VL)**: DiTããã³Text Encoderã¯ã`split_files/diffusion_models/qwen_image_bf16.safetensors` ãš `split_files/text_encoders/qwen_2.5_vl_7b.safetensors` ã https://huggingface.co/Comfy-Org/Qwen-Image_ComfyUI ããããããããŠã³ããŒãããŠãã ããã**fp8_scaledããŒãžã§ã³ã¯äœ¿çšã§ããŸããã**
+
+- **VAE**: VAE㯠`split_files/vae/qwen_image_vae.safetensors` ãåæ§ã« https://huggingface.co/Comfy-Org/Qwen-Image-Edit_ComfyUI ããããŠã³ããŒãããŠãã ãããComfyUIã®VAEã®éã¿ã䜿çšã§ããããã«ãªããŸããã
+
+- **Qwen-Image-Edit DiT**: Qwen-Image-Edit DiTã¯ã`split_files/diffusion_models/qwen_image_edit_bf16.safetensors` ããEdit-2509ã®å Žå㯠`split_files/diffusion_models/qwen_image_edit_2509_bf16.safetensors` ã https://huggingface.co/Comfy-Org/Qwen-Image-Edit_ComfyUI ããããŠã³ããŒãããŠãã ããã**`fp8_e4m3fn`ã¯äœ¿çšã§ããŸããã**Text EncoderãšVAEã¯Qwen-Imageãšåãã§ãã
+
+ãããã®éã¿ãå
¬éããŠãã ãã£ãComfy-Orgã«æè¬ããŸãã
+
+
+
+### Summary of files to download / ããŠã³ããŒããããã¡ã€ã«ã®ãŸãšã
+
+**fp8_scaled and fp8_e4m3fn versions cannot be used.**
+
+**Download from https://huggingface.co/Comfy-Org/Qwen-Image_ComfyUI :**
+|type|model|file|
+|----|--------|--------------|
+|DiT|Qwen-Image (no edit)|`split_files/diffusion_models/qwen_image_bf16.safetensors`|
+|Text Encoder|Qwen2.5-VL|`split_files/text_encoders/qwen_2.5_vl_7b.safetensors`|
+|VAE|Qwen-Image VAE|`split_files/vae/qwen_image_vae.safetensors`|
+
+**Download from https://huggingface.co/Comfy-Org/Qwen-Image-Edit_ComfyUI :**
+|type|model|file|
+|----|--------|--------------|
+|DiT|Qwen-Image-Edit|`split_files/diffusion_models/qwen_image_edit_bf16.safetensors`|
+|DiT|Qwen-Image-Edit-2509|`split_files/diffusion_models/qwen_image_edit_2509_bf16.safetensors`|
+|DiT|Qwen-Image-Edit-2511|`split_files/diffusion_models/qwen_image_edit_2511_bf16.safetensors`|
+
+**Download from https://huggingface.co/Comfy-Org/Qwen-Image-Layered_ComfyUI :**
+|type|model|file|
+|----|--------|--------------|
+|VAE|Qwen-Image-Layered VAE|`split_files/vae/qwen_image_layered_vae.safetensors`|
+|DiT|Qwen-Image-Layered|`split_files/diffusion_models/qwen_image_layered_bf16.safetensors`|
+
+
+## Specifying Model Version / ã¢ãã«ããŒãžã§ã³ã®æå®
+
+When specifying the model version in various scripts, use the following options:
+|type|option|note|
+|----|--------|----|
+|Qwen-Image|`--model_version original`|default, can be omitted|
+|Qwen-Image-Edit|`--model_version edit`| |
+|Qwen-Image-Edit-2509|`--model_version edit-2509`| |
+|Qwen-Image-Edit-2511|`--model_version edit-2511`| |
+|Qwen-Image-Layered|`--model_version layered`| |
+
+Note that the `--edit` (for Qwen-Image-Edit) and `--edit_plus` (for Qwen-Image-Edit-2509) flags are also available for backward compatibility.
+
+
+æ¥æ¬èª
+
+æ§ã
ãªã¹ã¯ãªããã§ã¢ãã«ããŒãžã§ã³ãæå®ããéã«ã¯ãè±èªçã®è¡šãåèã«ããŠãã ããã
+
+`--edit`ïŒQwen-Image-EditïŒããã³`--edit_plus`ïŒQwen-Image-Edit-2509ïŒãã©ã°ãåŸæ¹äºææ§ã®ããã«å©çšå¯èœã§ãã
+
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+If you are using Qwen-Image-Edit or Edit-2509/2511, please also refer to the [Qwen-Image-Edit section](./dataset_config.md#qwen-image-edit-and-qwen-image-edit-2509) of the dataset config documentation.
+
+If you are using Qwen-Image-Layered, note the following: Since the Qwen-Image-Layered dataset contains multiple target images, please specify `multiple_target=true` in the dataset config. For details, refer to the [dataset config document](./dataset_config.md#sample-for-image-dataset-with-caption-text-files).
+
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching uses a dedicated script for Qwen-Image.
+
+```bash
+python src/musubi_tuner/qwen_image_cache_latents.py \
+ --dataset_config path/to/toml \
+ --vae path/to/vae_model \
+ --model_version original
+```
+
+- Uses `qwen_image_cache_latents.py`.
+- The `--vae` argument is required.
+- Use the `--model_version` option for Qwen-Image-Edit/Layered training.
+- For Qwen-Image-Edit training, control images specified in the dataset config will also be cached as latents.
+- For Qwen-Image-Layered training, multiple target images will be cached as latents
+
+
+æ¥æ¬èª
+
+Qwen-Image-EditãŸãã¯Edit-2509/2511ã䜿çšããå Žåã¯ãäºåã«ããŒã¿ã»ããèšå®ã®ããã¥ã¡ã³ãã®[Qwen-Image-Editã®ã»ã¯ã·ã§ã³](./dataset_config.md#qwen-image-edit-and-qwen-image-edit-2509) ãåç
§ããŠãã ããã
+
+Qwen-Image-Layeredã䜿çšããå Žåã¯ã以äžã«æ³šæããŠãã ãããQwen-Image-Layeredã®ããŒã¿ã»ããã«ã¯è€æ°æã®ã¿ãŒã²ããç»åãå«ãŸãããããããŒã¿ã»ããèšå®ã§`multiple_target=true`ãæå®ããŠãã ããã詳现ã¯[ããŒã¿ã»ããèšå®ããã¥ã¡ã³ã](./dataset_config.md#sample-for-image-dataset-with-caption-text-files)ãåç
§ããŠãã ããã
+
+latentã®äºåãã£ãã·ã³ã°ã¯Qwen-Imageå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `qwen_image_cache_latents.py`ã䜿çšããŸãã
+- `--vae`åŒæ°ãæå®ããŠãã ããã
+- Qwen-Image-Editã®åŠç¿ã«ã¯`--model_version`ãªãã·ã§ã³ãé©åã«æå®ããŠãã ããã
+- Qwen-Image-Editã®åŠç¿ã§ã¯ãããŒã¿ã»ããèšå®ã§æå®ãããã³ã³ãããŒã«ç»åãlatentsãšããŠãã£ãã·ã¥ãããŸã
+- Layeredã®åŠç¿ã§ã¯ãè€æ°ã®ã¿ãŒã²ããç»åãlatentsãšããŠãã£ãã·ã¥ãããŸãã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text encoder output pre-caching also uses a dedicated script.
+
+```bash
+python src/musubi_tuner/qwen_image_cache_text_encoder_outputs.py \
+ --dataset_config path/to/toml \
+ --text_encoder path/to/text_encoder \
+ --batch_size 1 \
+ --model_version original
+```
+
+- Uses `qwen_image_cache_text_encoder_outputs.py`.
+- Requires the `--text_encoder` (Qwen2.5-VL) argument.
+- Use the `--fp8_vl` option to run the Text Encoder in fp8 mode for VRAM savings for <16GB GPUs.
+- Specify `--model_version` for Qwen-Image-Edit training. Prompts will be processed with control images to generate appropriate embeddings.
+
+**Technical details on the difference between `--model_version edit` and `--model_version edit-2509` and `--model_version edit-2511`**
+
+Qwen-Image-Edit-2509 and 2511 can use multiple images as control images, so the prompts for obtaining Text Encoder outputs differ from Edit.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°ãå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `qwen_image_cache_text_encoder_outputs.py`ã䜿çšããŸãã
+- `--text_encoder` (Qwen2.5-VL) åŒæ°ãå¿
èŠã§ãã
+- VRAMãç¯çŽããããã«ãfp8 ã§ããã¹ããšã³ã³ãŒããå®è¡ãã`--fp8_vl`ãªãã·ã§ã³ã䜿çšå¯èœã§ããVRAMã16GBæªæºã®GPUåãã§ãã
+- Qwen-Image-Editã®åŠç¿ã«ã¯`--model_version`ãæå®ããŠãã ãããããã³ãããã³ã³ãããŒã«ç»åãšäžç·ã«åŠçãããé©åãªåã蟌ã¿ãçæãããŸãã
+
+**`--model_version edit`ãš`--model_version edit-2509`ããã³`--model_version edit-2511`ã®éãã«é¢ããæè¡ç詳现**
+
+Qwen-Image-Edit-2509ããã³2511ã§ã¯è€æ°æã®ç»åãã³ã³ãããŒã«ç»åãšããŠäœ¿çšã§ãããããText Encoderåºåã®ååŸã®ããã®ããã³ãããEditãšã¯ç°ãªããŸãã
+
+
+
+## LoRA Training / LoRAåŠç¿
+
+Training uses a dedicated script `qwen_image_train_network.py`.
+
+**Standard Qwen-Image Training:**
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/qwen_image_train_network.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --model_version original \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 \
+ --timestep_sampling shift \
+ --weighting_scheme none --discrete_flow_shift 2.2 \
+ --optimizer_type adamw8bit --learning_rate 5e-5 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_qwen_image \
+ --network_dim 16 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+**Qwen-Image-Edit Training:**
+
+For training the image editing model, add the `--model_version` option for Qwen-Image-Edit, Edit-2509, or Edit-2511.
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/qwen_image_train_network.py \
+ --dit path/to/edit_dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --dataset_config path/to/toml \
+ --model_version edit-2511 \
+ ...
+```
+
+**Qwen-Image-Layered Training:**
+
+For training Qwen-Image-Layered models with layered control images, add the `--model_version layered` option.
+
+`--remove_first_image_from_target` option is also available to exclude the first target image from the model input/target during training. The first image among multiple target images inferred by the official model in Qwen-Image-Layered is the original image, and the rest are layer images. By using this option, you can train only on the layer images without inferring the original image. This improves training and inference speed and reduces memory usage. The impact on quality is unknown.
+
+Note that VAE is different for this architecture. Please use the VAE model for Qwen-Image-Layered.
+
+For sample image generation during Qwen-Image-Layered training, please refer to [this document](./sampling_during_training.md#sample-image-generation-during-qwen-image-layered-training--qwen-image-layeredã®åŠç¿äžã®ãµã³ãã«ã€ã¡ãŒãžçæ).
+
+---
+
+Common notes for Qwen-Image/Qwen-Image-Edit/Layered training:
+
+- Uses `qwen_image_train_network.py`.
+- **Requires** specifying `--dit`, `--vae`, and `--text_encoder`.
+- `--mixed_precision bf16` is recommended for Qwen-Image training.
+- Use the `--model_version` option for Qwen-Image-Edit, Edit-2509, or Edit-2511 training with control images, or for Qwen-Image-Layered training with multiple target images.
+- Memory saving options like `--fp8_base` and `--fp8_scaled` (for DiT), and `--fp8_vl` (for Text Encoder) are available.
+- `--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+- `--disable_numpy_memmap`: Disables numpy memory mapping for model loading, loading with standard file read. Increases RAM usage but significantly speeds up model loading in some cases.
+
+`--fp8_vl` is recommended for GPUs with less than 16GB of VRAM.
+
+`--sdpa` uses PyTorch's scaled dot product attention. Other options like `--xformers` and `--flash_attn` are available. `flash3` cannot be used currently.
+
+If you specify `--split_attn`, the attention computation will be split, slightly reducing memory usage. Please specify `--split_attn` if you are using anything other than `--sdpa`.
+
+`--timestep_sampling` allows you to choose the sampling method for the timesteps. `shift` with `--discrete_flow_shift` is the default. `qwen_shift` is also available. `qwen_shift` is a same method during inference. It uses the dynamic shift value based on the resolution of each image (typically around 2.2 for 1328x1328 images).
+
+`--discrete_flow_shift` is set quite low for Qwen-Image during inference (as described), so a lower value than other models may be preferable.
+
+Don't forget to specify `--network_module networks.lora_qwen_image`.
+
+The appropriate settings for each parameter are unknown. Feedback is welcome.
+
+### VRAM Usage Estimates with Memory Saving Options
+
+For 1024x1024 training with the batch size of 1, `--mixed_precision bf16` and `--gradient_checkpointing` is enabled and `--xformers` is used.
+
+|options|VRAM Usage|
+|-------|----------|
+|no |42GB|
+|`--fp8_base --fp8_scaled`|30GB|
+|+ `--blocks_to_swap 16`|24GB|
+|+ `--blocks_to_swap 45`|12GB|
+
+64GB main RAM system is recommended with `--blocks_to_swap`.
+
+If `--blocks_to_swap` is more than 45, the main RAM usage will increase significantly.
+
+Qwen-Image-Edit training requires additional memory for the control images.
+
+**Note:** The `--disable_numpy_memmap` option speeds up model loading in some cases with using standard file read instead of using numpy memory mapping. If you encounter slow model weight loading time, this option may help.
+
+
+æ¥æ¬èª
+
+Qwen-Imageã®åŠç¿ã¯å°çšã®ã¹ã¯ãªãã`qwen_image_train_network.py`ã䜿çšããŸããã³ãã³ãã©ã€ã³äŸã¯è±èªçãåç
§ããŠãã ããã
+
+**Qwen-Image-Editã®åŠç¿ã«ã€ããŠ**
+
+ç»åç·šéã¢ãã«ã®åŠç¿ã«ã¯ãQwen-Image-EditãEdit-2509ããŸãã¯Edit-2511ã®`--model_version`ãªãã·ã§ã³ã远å ããŠãã ããã
+
+**Qwen-Image-Layeredã®åŠç¿ã«ã€ããŠ**
+
+ã¬ã€ã€ãŒãå¶åŸ¡ç»åã䜿çšããQwen-Image-Layeredã¢ãã«ã®åŠç¿ã«ã¯ã`--model_version layered`ãªãã·ã§ã³ã远å ããŠãã ããã
+
+`--remove_first_image_from_target`ãªãã·ã§ã³ãå©çšå¯èœã§ãåŠç¿äžã«æåã®ã¿ãŒã²ããç»åãã¢ãã«ã®å
¥å/ã¿ãŒã²ããããé€å€ããŸããQwen-Image-Layeredã§ã¯å
¬åŒã¢ãã«ã§ã¯æšè«ãããè€æ°æã®ç»åã®ãã¡ãæåã®ç»åã¯å
ã®ç»åã§ãããæ®ããã¬ã€ã€ãŒç»åãšãªã£ãŠããŸãããã®ãªãã·ã§ã³ã䜿çšãããšãå
ã®ç»åãæšè«ããã«ã¬ã€ã€ãŒç»åã®ã¿ãåŠç¿ã§ããŸããããã«ããåŠç¿ãæšè«ã®é床ãåäžããã¡ã¢ãªäœ¿çšéãåæžãããŸããå質ãžã®åœ±é¿ã¯äžæã§ãã
+
+ãã®ã¢ãŒããã¯ãã£ã§ã¯VAEãç°ãªãããšã«æ³šæããŠãã ãããQwen-Image-Layeredçšã®VAEã¢ãã«ã䜿çšããŠãã ããã
+
+Qwen-Image-Layeredã«ãããåŠç¿äžã®ãµã³ãã«ç»åçæã«ã€ããŠã¯ã[ãã¡ãã®ããã¥ã¡ã³ã](./sampling_during_training.md#sample-image-generation-during-qwen-image-layered-training--qwen-image-layeredã®åŠç¿äžã®ãµã³ãã«ã€ã¡ãŒãžçæ)ãåç
§ããŠãã ããã
+
+---
+
+Qwen-Image/Edit/LayeredåŠç¿ã«å
±éã®æ³šæç¹:
+
+- `qwen_image_train_network.py`ã䜿çšããŸãã
+- `--dit`ã`--vae`ã`--text_encoder`ãæå®ããå¿
èŠããããŸãã
+- Qwen-Imageã®åŠç¿ã«ã¯`--mixed_precision bf16`ãæšå¥šããŸãã
+- ã³ã³ãããŒã«ç»åã䜿ã£ãQwen-Image-Edit/Edit-2509/Edit-2511ã®åŠç¿ãè€æ°ã¿ãŒã²ããç»åã䜿ã£ãQwen-Image-Layeredã®åŠç¿ã«ã¯ã`--model_version`ãªãã·ã§ã³ãé©åã«æå®ããŠãã ããã
+- `--fp8_base`ã`--fp8_scaled`ïŒDiTçšïŒã`--fp8_vl`ïŒããã¹ããšã³ã³ãŒããŒçšïŒãªã©ã®ã¡ã¢ãªç¯çŽãªãã·ã§ã³ãå©çšå¯èœã§ãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãå©çšå¯èœã§ãã
+- `--disable_numpy_memmap`: ã¢ãã«èªã¿èŸŒã¿æã®numpyã¡ã¢ãªãããã³ã°ãç¡å¹åããæšæºã®ãã¡ã€ã«èªã¿èŸŒã¿ã§èªã¿èŸŒã¿ãè¡ããŸããRAM䜿çšéã¯å¢å ããŸãããå Žåã«ãã£ãŠã¯ã¢ãã«ã®èªã¿èŸŒã¿ã倧å¹
ã«é«éåãããŸããããã¢ãã«ã®éã¿ã®èªã¿èŸŒã¿æéãé
ãå Žåã¯ããã®ãªãã·ã§ã³ã圹ç«ã€ãããããŸããã
+
+GPUã®VRAMã16GBæªæºã®å Žåã¯ã`--fp8_vl`ãæšå¥šããŸãã
+
+`--sdpa`ã¯PyTorchã®scaled dot product attentionãçšããŸããä»ã« `--xformers`ã`--flash_attn` ããããŸãã`--flash3`ã¯çŸåšäœ¿çšã§ããŸããã
+
+`--split_attn` ãæå®ãããšãattentionã®èšç®ãåå²ãããã¡ã¢ãªäœ¿çšéããããã«åæžãããŸãã`--sdpa` 以å€ã䜿çšããå Žåã¯ã`--split_attn` ãæå®ããŠãã ããã
+
+`--timestep_sampling` ã§ã¯ãã¿ã€ã ã¹ãããã®ãµã³ããªã³ã°æ¹æ³ãéžæã§ããŸãã`shift` ãš `--discrete_flow_shift` ã®çµã¿åãããããã©ã«ãã§ãã`qwen_shift` ãå©çšå¯èœã§ãã`qwen_shift` ã¯æšè«æãšåãæ¹æ³ã§ãåç»åã®è§£å床ã«åºã¥ããåçã·ããå€ã䜿çšããŸãïŒéåžžã1328x1328ç»åã®å Žåã¯çŽ2.2ã§ãïŒã
+
+`--discrete_flow_shift`ã¯ãQwen-Imageã§ã¯åè¿°ã®ããã«æšè«æã«ããªãäœããªãããä»ã®ã¢ãã«ãããäœããè¯ããããããŸããã
+
+`--network_module networks.lora_qwen_image`ãæå®ããããšãå¿ããªãã§ãã ããã
+
+ããããã®ãã©ã¡ãŒã¿ã®é©åãªèšå®ã¯äžæã§ãããã£ãŒãããã¯ããåŸ
ã¡ããŠããŸãã
+
+### ã¡ã¢ãªç¯çŽãªãã·ã§ã³ã䜿çšããå Žåã®VRAM䜿çšéã®ç®å®
+
+1024x1024ã®åŠç¿ã§ããããµã€ãº1ã®å Žåã`--mixed_precision bf16`ãš`--gradient_checkpointing`ãæå®ãã`--xformers`ã䜿çšããå Žåã®VRAM䜿çšéã®ç®å®ã¯ä»¥äžã®éãã§ãã
+
+|ãªãã·ã§ã³|VRAM䜿çšé|
+|-------|----------|
+|no |42GB|
+|`--fp8_base --fp8_scaled`|30GB|
+|+ `--blocks_to_swap 16`|24GB|
+|+ `--blocks_to_swap 45`|12GB|
+
+`--blocks_to_swap`ã䜿çšããå Žåã¯ã64GBã®ã¡ã€ã³RAMãæšå¥šããŸãã
+
+`--blocks_to_swap`ã45ãè¶
ãããšãã¡ã€ã³RAMã®äœ¿çšéã倧å¹
ã«å¢å ããŸãã
+
+Qwen-Image-Editã®åŠç¿ã§ã¯ãã³ã³ãããŒã«ç»åã®ããã«è¿œå ã®ã¡ã¢ãªãå¿
èŠã§ãã
+
+**åè:** `--disable_numpy_memmap`ãªãã·ã§ã³ã¯ãnumpyã¡ã¢ãªãããã³ã°ã®ä»£ããã«æšæºã®ãã¡ã€ã«èªã¿èŸŒã¿ã䜿çšããããšã§ãå Žåã«ãã£ãŠã¯ã¢ãã«ã®èªã¿èŸŒã¿ãé«éåããŸããã¢ãã«ã®éã¿ã®èªã¿èŸŒã¿æéãé
ãå Žåã¯ããã®ãªãã·ã§ã³ã圹ç«ã€ãããããŸããã
+
+
+
+## Finetuning
+
+Finetuning uses a dedicated script `qwen_image_train.py`. This script performs full finetuning of the model, not LoRA. Sample usage is as follows:
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 src/musubi_tuner/qwen_image_train.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --model_version original \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 --gradient_checkpointing \
+ --optimizer_type adafactor --learning_rate 1e-6 --fused_backward_pass \
+ --optimizer_args "relative_step=False" "scale_parameter=False" "warmup_init=False" \
+ --max_grad_norm 0 --lr_scheduler constant_with_warmup --lr_warmup_steps 10 \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-model
+```
+
+- Uses `qwen_image_train.py`.
+- Finetuning requires a large amount of VRAM. The use of memory saving options is strongly recommended.
+- `--full_bf16`: Loads the model weights in bfloat16 format to significantly reduce VRAM usage.
+- `--optimizer_type adafactor`: Using Adafactor is recommended for finetuning.
+- `--fused_backward_pass`: Reduces VRAM usage during the backward pass when using Adafactor.
+- `--mem_eff_save`: Reduces main memory (RAM) usage when saving checkpoints.
+- `--blocks_to_swap`: Swaps model blocks between VRAM and main memory to reduce VRAM usage. This is effective when VRAM is limited.
+- `--disable_numpy_memmap`: Disables numpy memory mapping for model loading, loading with standard file read. Increases RAM usage but may speed up model loading in some cases.
+
+`--full_bf16` reduces VRAM usage by about 20GB but may impact model accuracy as the weights are kept in bfloat16. Note that the optimizer state is still kept in float32. In addition, it is recommended to use this with an optimizer that supports stochastic rounding. In this repository, Adafactor optimizer with `--fused_backward_pass` option supports stochastic rounding.
+
+When using `--mem_eff_save`, please note that traditional saving methods are still used when saving the optimizer state in `--save_state`, requiring about 40GB of main memory.
+
+`--model_version` option allows for finetuning of Qwen-Image-Edit/Edit-2509/Edit-2511 (unverified).
+
+### Recommended Settings
+
+We are still exploring the optimal settings. The configurations above are just examples, so please adjust them as needed. We welcome your feedback.
+
+If you have ample VRAM, you can use any optimizer of your choice. `--full_bf16` is not recommended.
+
+For limited VRAM environments (e.g., 48GB or less), you may need to use `--full_bf16`, the Adafactor optimizer, and `--fused_backward_pass`. Settings above are the recommended options for that case. Please adjust `--lr_warmup_steps` to a value between approximately 10 and 100.
+
+`--fused_backward_pass` is not currently compatible with gradient accumulation, and max grad norm may not function as expected, so it is recommended to specify `--max_grad_norm 0`.
+
+If your VRAM is even more constrained, you can enable block swapping by specifying a value for `--blocks_to_swap`.
+
+Experience with other models suggests that the learning rate may need to be reduced significantly; something in the range of 1e-6 to 1e-5 might be a good place to start.
+
+
+æ¥æ¬èª
+
+Finetuningã¯å°çšã®ã¹ã¯ãªãã`qwen_image_train.py`ã䜿çšããŸãããã®ã¹ã¯ãªããã¯LoRAã§ã¯ãªããã¢ãã«å
šäœã®finetuningãè¡ããŸãã
+
+- `qwen_image_train.py`ã䜿çšããŸãã
+- Finetuningã¯å€§éã®VRAMãå¿
èŠãšããŸããã¡ã¢ãªç¯çŽãªãã·ã§ã³ã®äœ¿çšãåŒ·ãæšå¥šããŸãã
+- `--full_bf16`: ã¢ãã«ã®éã¿ãbfloat16圢åŒã§èªã¿èŸŒã¿ãVRAM䜿çšéã倧å¹
ã«åæžããŸãã
+- `--optimizer_type adafactor`: Finetuningã§ã¯Adafactorã®äœ¿çšãæšå¥šãããŸãã
+- `--fused_backward_pass`: Adafactoräœ¿çšæã«ãbackward passäžã®VRAM䜿çšéãåæžããŸãã
+- `--mem_eff_save`: ãã§ãã¯ãã€ã³ãä¿åæã®ã¡ã€ã³ã¡ã¢ãªïŒRAMïŒäœ¿çšéãåæžããŸãã
+- `--blocks_to_swap`: ã¢ãã«ã®ãããã¯ãVRAMãšã¡ã€ã³ã¡ã¢ãªéã§ã¹ã¯ããããVRAM䜿çšéãåæžããŸããVRAMãå°ãªãå Žåã«æå¹ã§ãã
+- `--disable_numpy_memmap`: ã¢ãã«èªã¿èŸŒã¿æã®numpyã¡ã¢ãªãããã³ã°ãç¡å¹åããæšæºã®ãã¡ã€ã«èªã¿èŸŒã¿ã§èªã¿èŸŒã¿ãè¡ããŸããRAM䜿çšéã¯å¢å ããŸãããå Žåã«ãã£ãŠã¯ã¢ãã«ã®èªã¿èŸŒã¿ãé«éåãããŸãã
+
+`--full_bf16`ã¯VRAM䜿çšéãçŽ20GBåæžããŸãããéã¿ãbfloat16ã§ä¿æããããããã¢ãã«ã®ç²ŸåºŠã«åœ±é¿ãäžããå¯èœæ§ããããŸãããªããã£ãã€ã¶ã®ç¶æ
ã¯float32ã§ä¿æãããŸãããŸããå¹ççãªåŠç¿ã®ããã«ãstochastic roundingããµããŒããããªããã£ãã€ã¶ãšã®äœµçšãæšå¥šãããŸãããã®ãªããžããªã§ã¯ã`adafactor`ãªããã£ãã€ã¶ã«`--fused_backward_pass`ãªãã·ã§ã³ã®çµã¿åããã§stochastic roundingããµããŒãããŠããŸãã
+
+`--mem_eff_save`ã䜿çšããå Žåã§ãã`--save_state`ã«ãããŠã¯ãªããã£ãã€ã¶ã®ç¶æ
ãä¿åããéã«åŸæ¥ã®ä¿åæ¹æ³ãäŸç¶ãšããŠäœ¿çšããããããçŽ40GBã®ã¡ã€ã³ã¡ã¢ãªãå¿
èŠã§ããããšã«æ³šæããŠãã ããã
+
+`--model_version`ãªãã·ã§ã³ã«ãããQwen-Image-Edit/Edit-2509/Edit-2511ã®finetuningãå¯èœã§ãïŒæªæ€èšŒïŒã
+
+### æšå¥šèšå®
+
+æé©ãªèšå®ã¯ãŸã 調æ»äžã§ããäžèšã®æ§æã¯ãããŸã§äžäŸã§ãã®ã§ãå¿
èŠã«å¿ããŠèª¿æŽããŠãã ããããã£ãŒãããã¯ããåŸ
ã¡ããŠãããŸãã
+
+ååãªVRAMãããå Žåã¯ãã奜ã¿ã®ãªããã£ãã€ã¶ã䜿çšã§ããŸãã`--full_bf16`ã¯æšå¥šãããŸããã
+
+VRAMãéãããŠããç°å¢ïŒäŸïŒ48GB以äžïŒã®å Žåã¯ã`--full_bf16`ãAdafactorãªããã£ãã€ã¶ãããã³`--fused_backward_pass`ã䜿çšããå¿
èŠããããããããŸãããäžèšã®èšå®ã¯ãã®å Žåã®æšå¥šãªãã·ã§ã³ã§ãã`--lr_warmup_steps`ã¯çŽ10ãã100ã®éã®å€ã«èª¿æŽããŠãã ããã
+
+çŸæç¹ã§ã¯`--fused_backward_pass`ã¯gradient accumulationã«å¯Ÿå¿ããŠããŸããããŸãmax grad normãæ³å®éãã«åäœããªãå¯èœæ§ãããããã`--max_grad_norm 0`ãæå®ããããšãæšå¥šããŸãã
+
+ããã«VRAMãå¶çŽãããŠããå Žåã¯ã`--blocks_to_swap`ã«å€ãæå®ããŠãããã¯ã¹ã¯ããã³ã°ãæå¹ã«ã§ããŸãã
+
+
+
+## Inference / æšè«
+
+Inference uses a dedicated script `qwen_image_generate_image.py`.
+
+**Standard Qwen-Image Inference:**
+
+```bash
+python src/musubi_tuner/qwen_image_generate_image.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --prompt "A cat" \
+ --negative_prompt " " \
+ --image_size 1024 1024 --infer_steps 25 \
+ --guidance_scale 4.0 \
+ --attn_mode sdpa \
+ --save_path path/to/save/dir \
+ --output_type images \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+**Qwen-Image-Edit Inference:**
+
+```bash
+python src/musubi_tuner/qwen_image_generate_image.py \
+ --dit path/to/edit_dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --model_version edit-2511 \
+ --control_image_path path/to/control_image.png \
+ --prompt "Change the background to a beach" \
+ --resize_control_to_official_size \
+ ...
+```
+
+**Qwen-Image-Layered Inference:**
+
+Please specify `--model_version layered` for Qwen-Image-Layered inference. Note that VAE is different for this architecture. Please use the VAE model for Qwen-Image-Layered.
+
+---
+
+- Uses `qwen_image_generate_image.py`.
+- **Requires** specifying `--dit`, `--vae`, and `--text_encoder`.
+- `--image_size` is the size of the generated image, height and width are specified in that order.
+- `--prompt`: Prompt for generation.
+- `--guidance_scale` controls the classifier-free guidance scale.
+- For Qwen-Image-Edit:
+ - Use the `--model_version` option to specify the version for image editing mode. For example, `--model_version edit-2511` or `--model_version layered`.
+ - `--control_image_path`: Path to the control (reference) image for editing. Edit-2509 also supports multiple arguments (e.g., `--control_image_path img1.png img2.png img3.png`).
+ - `--resize_control_to_image_size`: Resize control image to match the specified image size.
+ - `--resize_control_to_official_size`: Resize control image to official size (1M pixels keeping aspect ratio). **Recommended for better results with Edit models.** (Mandatory for 2511)
+ - Above two options are mutually exclusive. If both are not specified, the control image will be used at its original resolution.
+ - `--append_original_name`: When saving edited images, appends the original base name of the control image to the output file name.
+- For Qwen-Image-Layered:
+ - Specify the image to be layered in `--control_image_path`.
+ - Specify the number of layers to output in `--output_layers`. (Since Qwen-Image-Layered also generates the original image, it generates one more than the specified number. If `--remove_first_image_from_target` was used during training, specify "the number of layers - 1" here to match the number of generated images.)
+ - `--resize_control_to_image_size`: Resize control image to match the specified image size. **Recommended for better results with Layered models.**
+- Memory saving options like `--fp8_scaled` (for DiT) are available.
+- `--text_encoder_cpu` enables CPU inference for the text encoder. Recommended for systems with limited GPU resources (less than 16GB VRAM).
+- LoRA loading options (`--lora_weight`, `--lora_multiplier`) are available.
+
+You can specify the discrete flow shift using `--flow_shift`. If omitted, the default value (dynamic shifting based on the image size) will be used.
+
+`xformers`, `flash` and `sageattn` are also available as attention modes. However `sageattn` is not confirmed to work yet.
+
+
+æ¥æ¬èª
+
+Qwen-Imageã®æšè«ã¯å°çšã®ã¹ã¯ãªãã`qwen_image_generate_image.py`ã䜿çšããŸããã³ãã³ãäŸã¯è±èªçã®ããã¥ã¡ã³ããåç
§ããŠãã ããã
+
+**Qwen-Image-Layeredã®æšè«ã«ã€ããŠ**
+
+Qwen-Image-Layeredã®æšè«ã«ã¯`--model_version layered`ãæå®ããŠãã ããããã®ã¢ãŒããã¯ãã£ã§ã¯VAEãç°ãªãããšã«æ³šæããŠãã ãããQwen-Image-Layeredçšã®VAEã¢ãã«ã䜿çšããŠãã ããã
+
+---
+
+- `qwen_image_generate_image.py`ã䜿çšããŸãã
+- `--dit`ã`--vae`ã`--text_encoder`ãæå®ããå¿
èŠããããŸãã
+- `--image_size`ã¯çæããç»åã®ãµã€ãºã§ãé«ããšå¹
ããã®é çªã§æå®ããŸãã
+- `--prompt`: çæçšã®ããã³ããã§ãã
+- `--guidance_scale`ã¯ãclassifier-freeã¬ã€ãã³ã¹ã®ã¹ã±ãŒã«ãå¶åŸ¡ããŸãã
+- Qwen-Image-Editã®å ŽåïŒ
+ - ç»åç·šéã¢ãŒããæå¹ã«ããããã«`--model_version`ãªãã·ã§ã³ãé©åã«æå®ããŠãã ããã
+ - `--control_image_path`: ç·šéçšã®ã³ã³ãããŒã«ïŒåç
§ïŒç»åãžã®ãã¹ã§ãã Edit-2509ã§ã¯è€æ°ã®åŒæ°ããµããŒãããŠããŸãïŒäŸ: `--control_image_path img1.png img2.png img3.png`ïŒã
+ - `--resize_control_to_image_size`: ã³ã³ãããŒã«ç»åãæå®ããç»åãµã€ãºã«åãããŠãªãµã€ãºããŸãã
+ - `--resize_control_to_official_size`: ã³ã³ãããŒã«ç»åãå
¬åŒãµã€ãºïŒã¢ã¹ãã¯ãæ¯ãä¿ã¡ãªãã100äžãã¯ã»ã«ïŒã«ãªãµã€ãºããŸããæå®ãæšå¥šããŸãïŒç¹ã«2511ã§ã¯å¿
é ïŒã
+ - äžèš2ã€ã®ãªãã·ã§ã³ã¯åæã«æå®ã§ããŸãããäž¡æ¹ãšãæå®ããªãå Žåãå¶åŸ¡ç»åã¯ãã®ãŸãŸã®è§£å床ã§äœ¿çšãããŸãã
+ - `--append_original_name`: ç·šéãããç»åãä¿åããéã«ãã³ã³ãããŒã«ç»åã®å
ã®åºæ¬åãåºåãã¡ã€ã«åã«è¿œå ããŸãã
+- Qwen-Image-Layeredã®å ŽåïŒ
+ - `--control_image_path`ã«ãåå²å¯Ÿè±¡ã®ç»åãæå®ããŠãã ããã
+ - `--output_layers`ã«åºåããã¬ã€ã€ãŒæ°ãæå®ããŠãã ãããïŒQwen-Image-Layeredã¯å
ç»åãçæãããããæå®ããæ°ãã1æå€ãçæãããŸããããåŠç¿æã«`--remove_first_image_from_target`ã䜿çšããŠããå Žåã¯ãããã«ã¯ãã¬ã€ã€ãŒæ°ïŒ1ããæå®ããŠãã ãããïŒ
+ - `--resize_control_to_image_size`: ã³ã³ãããŒã«ç»åãæå®ããç»åãµã€ãºã«åãããŠãªãµã€ãºããŸããLayeredã¢ãã«ã§ããè¯ãçµæãåŸãããã«æšå¥šãããŸãã
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ãã
+- `--text_encoder_cpu`ãæå®ãããšããã¹ããšã³ã³ãŒããŒãCPUã§æšè«ããŸããGPUã®VRAMã16GBæªæºã®ã·ã¹ãã ã§ã¯ãCPUæšè«ãæšå¥šããŸãã
+- LoRAã®èªã¿èŸŒã¿ãªãã·ã§ã³ïŒ`--lora_weight`ã`--lora_multiplier`ïŒãå©çšå¯èœã§ãã
+
+`--flow_shift`ãæå®ããããšã§ã颿£ãããŒã·ãããèšå®ã§ããŸããçç¥ãããšãããã©ã«ãå€ïŒç»åãµã€ãºã«åºã¥ãåçã·ããïŒã䜿çšãããŸãã
+
+`xformers`ã`flash`ã`sageattn`ãattentionã¢ãŒããšããŠå©çšå¯èœã§ãããã ãã`sageattn`ã¯ãŸã åäœç¢ºèªãåããŠããŸããã
+
+
+
+### Inpainting and Reference Consistency Mask (RCM)
+
+For Qwen-Image-Edit, inpainting with a mask image and a feature called Reference Consistency Mask (RCM) are available to prevent unintended changes in the background or other areas.
+
+**These features are only available in Edit/Edit-plus mode, and require the first control image to be the same size as the output image.** They cannot be used at the same time.
+
+- `--mask_path`: Specifies the path to a mask image for inpainting. The image should be black and white, where white areas indicate the regions to be inpainted (changed) and black areas indicate the regions to be preserved.
+- `--rcm_threshold`: Enables the Reference Consistency Mask (RCM) feature. RCM is a technique that dynamically creates a mask during the denoising process to prevent unintended modifications to areas that should remain unchanged. It compares the latents of the current generation step with the latents of the control image and protects areas with small differences. Lower values for the threshold result in a larger inpainting area. Typical values are 0.01 to 0.1 for absolute threshold, 0.1 to 0.5 for relative threshold.
+- `--rcm_relative_threshold`: If this flag is set, the `--rcm_threshold` is treated as a relative value (0.0-1.0) to the maximum difference observed in the current step. This can provide more stable results across different steps. If not set, the threshold is an absolute value.
+- `--rcm_kernel_size`: Specifies the kernel size for a Gaussian blur applied before calculating the difference. This helps to create a smoother, more stable mask. Default is 3.
+- `--rcm_dilate_size`: Specifies the size to dilate (expand) the inpainting region of the generated mask. This is useful for ensuring that the edges of the area you want to change are properly modified. Default is 0 (no dilation).
+- `--rcm_debug_save`: When this flag is set, the dynamically generated RCM mask for each step will be saved in the output directory. This is very useful for debugging and adjusting the RCM parameters.
+
+**Example using RCM:**
+
+```bash
+python src/musubi_tuner/qwen_image_generate_image.py \
+ --dit path/to/edit_dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --edit \
+ --control_image_path path/to/control_image.png \
+ --prompt "Change her dress to red" \
+ --image_size 1024 1024 \
+ --rcm_threshold 0.2 --rcm_relative_threshold \
+ --rcm_kernel_size 3 --rcm_dilate_size 1 \
+ ...
+```
+
+#### Important Usage Notes
+
+- **Compatibility:** Both RCM and the standard inpainting mask are only effective in **edit mode** (when a control image is provided).
+- **Requirement:** To use these features, the initial control image must have the **same dimensions** as the final output image. The script will show an error and disable RCM if the sizes do not match.
+- **Exclusivity:** RCM and `--mask_path` cannot be used at the same time.
+- **Debugging Tip:** When first using RCM, it is highly recommended to use the `--rcm_debug_save` flag. This will save the masks to the output directory, allowing you to visually inspect how the `threshold` and other parameters are affecting the mask generation.
+
+#### Technical Details of RCM
+
+Reference Consistency Mask (RCM) addresses a common issue in Qwen-Image-Edit where the generated image has a slight positional drift or misalignment compared to the control image. RCM significantly improves the structural stability and positional accuracy of the image editing process.
+
+This feature is implemented based on the idea of dynamically creating a mask during the denoising loop to "anchor" the parts of the image that should remain consistent with the reference (control) image.
+
+**How RCM Works**
+
+For each step in the denoising loop, RCM performs the following actions:
+1. It calculates a "noisy" version of the original control latent, corresponding to the current timestep `t`.
+2. It computes the difference between the current generation latent and the noisy control latent.
+3. Areas with a small difference are considered "consistent" and are masked to be preserved. The sensitivity is controlled by the `rcm_threshold`.
+4. This mask is then used to reset the consistent regions of the current latent back to the state of the noisy reference latent, just before the `scheduler.step` is called.
+
+This self-correcting mechanism prevents the accumulation of positional errors throughout the denoising process, ensuring that unchanged elements like backgrounds or faces stay perfectly aligned.
+
+
+æ¥æ¬èª
+
+Qwen-Image-Editã«ãããŠãèæ¯ãªã©ãæå³ãã倿ŽããŠããŸãããšãé²ãããããã¹ã¯ç»åã䜿ã£ãInpaintingãšãReference Consistency Mask (RCM) ãšããæ©èœãå©çšå¯èœã§ãã
+
+**ãããã®æ©èœã¯Edit/Edit-plusã¢ãŒãã§ã®ã¿å©çšå¯èœã§ããã€æåã®ã³ã³ãããŒã«ç»åãåºåç»åãšåããµã€ãºã§ããå¿
èŠããããŸãã** ãŸããåæã«äœ¿çšããããšã¯ã§ããŸããã
+
+- `--mask_path`: Inpaintingçšã®ãã¹ã¯ç»åãžã®ãã¹ãæå®ããŸããçœé»ã®ãã¹ã¯ç»åã§ãçœã®é åãInpaintingïŒå€æŽïŒãããé åãé»ã®é åãç¶æãããé åã瀺ããŸãã
+- `--rcm_threshold`: Reference Consistency Mask (RCM) æ©èœãæå¹ã«ããŸããRCMã¯ãDenoisingã®éçšã§åçã«ãã¹ã¯ãçæãã倿Žãã¹ãã§ãªãç®æãæå³ãã倿Žãããã®ãé²ãæè¡ã§ããçŸåšã®çæã¹ãããã®latentãšã³ã³ãããŒã«ç»åã®latentãæ¯èŒããå·®ãå°ããéšåãä¿è·ããŸããéŸå€ãäœãã»ã©ãInpaintingé åã¯å€§ãããªããŸãã
+- `--rcm_relative_threshold`: ãã®ãã©ã°ãæå®ãããšã`--rcm_threshold`ããã®ã¹ãããã§èŠ³æž¬ãããå·®åã®æå€§å€ã«å¯Ÿããçžå¯Ÿçãªå€ïŒ0.0ïœ1.0ïŒãšããŠæ±ãããŸããããã«ãããã¹ãããããšã«å®å®ããçµæãåŸããããããªããŸããæå®ããªãå Žåã¯çµ¶å¯Ÿå€ãšããŠæ±ãããŸãã絶察å€ã®å Žåã¯0.01ïœ0.1ãçžå¯Ÿå€ã®å Žåã¯0.1ïœ0.5ãå
žåçãªå€ã§ãã
+- `--rcm_kernel_size`: å·®åãèšç®ããåã«é©çšããã¬ãŠã·ã¢ã³ãã©ãŒã®ã«ãŒãã«ãµã€ãºãæå®ããŸããããã«ãããããæ»ããã§å®å®ãããã¹ã¯ãçæãããŸããããã©ã«ãã¯3ã§ãã
+- `--rcm_dilate_size`: çæããããã¹ã¯ã®Inpaintingé åãèšåŒµïŒdilateïŒããããµã€ãºãæå®ããŸãã倿Žãããé åã®å¢çéšåã確å®ã«å€æŽãããããã«ãããå Žåã«äŸ¿å©ã§ããããã©ã«ãã¯0ïŒèšåŒµãªãïŒã§ãã
+- `--rcm_debug_save`: ãã®ãã©ã°ãæå®ãããšãåã¹ãããã§åçã«çæãããRCMã®ãã¹ã¯ãåºåãã£ã¬ã¯ããªã«ä¿åãããŸããRCMã®ãã©ã¡ãŒã¿ã調æŽããéã®ãããã°ã«éåžžã«åœ¹ç«ã¡ãŸãã
+
+**éèŠãªäœ¿çšäžã®æ³šæ**
+
+- **äºææ§:** RCMãšæšæºã®inpaintingãã¹ã¯ã¯ãã©ã¡ãã**Editã¢ãŒã**ïŒå¶åŸ¡ç»åãæäŸãããŠããå ŽåïŒã§ã®ã¿æå¹ã§ãã
+- **èŠä»¶:** ãããã®æ©èœã䜿çšããã«ã¯ãæåã®å¶åŸ¡ç»åãæçµçãªåºåç»åãš**åããµã€ãº**ã§ããå¿
èŠããããŸãããµã€ãºãäžèŽããªãå Žåãã¹ã¯ãªããã¯ãšã©ãŒã衚瀺ããRCMãç¡å¹ã«ããŸãã
+- **æä»æ§:** RCMãš`--mask_path`ã¯åæã«äœ¿çšã§ããŸããã
+- **ãããã°ã®ãã³ã:** åããŠRCMã䜿çšããéã¯ã`--rcm_debug_save`ãã©ã°ã䜿çšããããšãåŒ·ãæšå¥šããŸããããã«ãããã¹ã¯ãåºåãã£ã¬ã¯ããªã«ä¿åããã`threshold`ãªã©ã®ãã©ã¡ãŒã¿ããã¹ã¯çæã«ã©ã®ããã«åœ±é¿ããŠããããèŠèŠçã«ç¢ºèªã§ããŸãã
+
+**RCMã®æè¡ç詳现**
+
+Reference Consistency Mask (RCM) ã¯ãQwen-Image-Editã«ãããŠãçæç»åãå¶åŸ¡ç»åãšæ¯èŒããŠããããªäœçœ®ãããèµ·ãããšããäžè¬çãªåé¡ã解決ããããã®ãã®ã§ããRCMã¯ãç·šéããã»ã¹ã«ãããæ§é çãªå®å®æ§ãšäœçœ®ç²ŸåºŠã倧å¹
ã«åäžãããŸãã
+
+ãã®æ©èœã¯ãdenoisingã«ãŒãäžã«åçã«ãã¹ã¯ãçæããåç
§å
ïŒå¶åŸ¡ç»åïŒãšäžèŽãã¹ãéšåããåºå®ïŒã¢ã³ã«ãŒïŒããããšããã¢ã€ãã¢ã«åºã¥ããŠããŸãã
+
+**RCMã®åäœåç**
+
+RCMã¯ãdenoisingã«ãŒãã®åã¹ãããã§ä»¥äžã®åŠçãå®è¡ããŸãã
+1. çŸåšã®ã¿ã€ã ã¹ããã`t`ã«å¯Ÿå¿ãããå
ã®å¶åŸ¡ç»åã®æœåšå€æ°ã«ãã€ãºãå ããããŒãžã§ã³ãèšç®ããŸãã
+2. çŸåšã®çæäžlatentãšããã€ãºä»å æžã¿å¶åŸ¡latentãšã®å·®åãèšç®ããŸãã
+3. å·®åãå°ããé åããäžèŽããŠããããšã¿ãªãããã®éšåãä¿æããããã«ãã¹ã¯ããŸãããã®æåºŠã¯`rcm_threshold`ã«ãã£ãŠå¶åŸ¡ãããŸãã
+4. ãããŠããã®ãã¹ã¯ã䜿ãã`scheduler.step`ãåŒã³åºãããçŽåã«ãäžèŽããŠããé åããã€ãºä»å æžã¿åç
§latentã®ç¶æ
ã«ãªã»ããããŸãã
+
+ãã®èªå·±ä¿®æ£çãªã¡ã«ããºã ã«ãããdenoisingããã»ã¹å
šäœãéããŠäœçœ®èª€å·®ãèç©ãããã®ãé²ããèæ¯ãé¡ã®ãããªå€æŽããªãèŠçŽ ãå®å
šã«äœçœ®ãããªãç¶æãããããšãä¿èšŒããŸãã
+
+
\ No newline at end of file
diff --git a/docs/sampling_during_training.md b/docs/sampling_during_training.md
new file mode 100644
index 0000000000000000000000000000000000000000..e79fa78cd49bb71d85bcc3bc5e84c554e6c29cdc
--- /dev/null
+++ b/docs/sampling_during_training.md
@@ -0,0 +1,141 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# Sampling during training / åŠç¿äžã®ãµã³ãã«ç»åçæ
+
+By preparing a prompt file, you can generate sample images during training.
+
+Please be aware that it consumes a considerable amount of VRAM, so be careful when generating sample images for videos with a large number of frames. Also, since it takes time to generate, adjust the frequency of sample image generation as needed.
+
+
+æ¥æ¬èª
+
+ããã³ãããã¡ã€ã«ãçšæããããšã§ãåŠç¿äžã«ãµã³ãã«ç»åãçæããããšãã§ããŸãã
+
+VRAMããããªãã«æ¶è²»ããŸãã®ã§ãç¹ã«ãã¬ãŒã æ°ãå€ãåç»ãçæããå Žåã¯æ³šæããŠãã ããããŸãçæã«ã¯æéãããããŸãã®ã§ããµã³ãã«ç»åçæã®é »åºŠã¯é©å®èª¿æŽããŠãã ããã
+
+
+## How to use / äœ¿ãæ¹
+
+### Command line options for training with sampling / ãµã³ãã«ç»åçæã«é¢é£ããåŠç¿æã®ã³ãã³ãã©ã€ã³ãªãã·ã§ã³
+
+Example of command line options for training with sampling / èšè¿°äŸ:
+
+```bash
+--vae path/to/ckpts/hunyuan-video-t2v-720p/vae/pytorch_model.pt
+--vae_chunk_size 32 --vae_spatial_tile_sample_min_size 128
+--text_encoder1 path/to/ckpts/text_encoder
+--text_encoder2 path/to/ckpts/text_encoder_2
+--sample_prompts /path/to/prompt_file.txt
+--sample_every_n_epochs 1 --sample_every_n_steps 1000 --sample_at_first
+```
+
+`--vae`, `--vae_chunk_size`, `--vae_spatial_tile_sample_min_size`, `--text_encoder1`, `--text_encoder2` are the same as when generating images, so please refer to [here](/README.md#inference) for details. `--fp8_llm` can also be specified.
+
+`--sample_prompts` specifies the path to the prompt file used for sample image generation. Details are described below.
+
+`--sample_every_n_epochs` specifies how often to generate sample images in epochs, and `--sample_every_n_steps` specifies how often to generate sample images in steps.
+
+`--sample_at_first` is specified when generating sample images at the beginning of training.
+
+Sample images and videos are saved in the `sample` directory in the directory specified by `--output_dir`. They are saved as `.png` for still images and `.mp4` for videos.
+
+
+æ¥æ¬èª
+
+`--vae`ã`--vae_chunk_size`ã`--vae_spatial_tile_sample_min_size`ã`--text_encoder1`ã`--text_encoder2`ã¯ãç»åçææãšåæ§ã§ãã®ã§ã詳现ã¯[ãã¡ã](/README.ja.md#æšè«)ãåç
§ããŠãã ããã`--fp8_llm`ãæå®å¯èœã§ãã
+
+`--sample_prompts`ã¯ããµã³ãã«ç»åçæã«äœ¿çšããããã³ãããã¡ã€ã«ã®ãã¹ãæå®ããŸãã詳现ã¯åŸè¿°ããŸãã
+
+`--sample_every_n_epochs`ã¯ãäœãšããã¯ããšã«ãµã³ãã«ç»åãçæããããã`--sample_every_n_steps`ã¯ãäœã¹ãããããšã«ãµã³ãã«ç»åãçæããããæå®ããŸãã
+
+`--sample_at_first`ã¯ãåŠç¿éå§æã«ãµã³ãã«ç»åãçæããå Žåã«æå®ããŸãã
+
+ãµã³ãã«ç»åãåç»ã¯ã`--output_dir`ã§æå®ãããã£ã¬ã¯ããªå
ã®ã`sample`ãã£ã¬ã¯ããªã«ä¿åãããŸãã鿢ç»ã®å Žåã¯`.png`ãåç»ã®å Žåã¯`.mp4`ã§ä¿åãããŸãã
+
+
+### Prompt file / ããã³ãããã¡ã€ã«
+
+The prompt file is a text file that contains the prompts for generating sample images. The example is as follows. / ããã³ãããã¡ã€ã«ã¯ããµã³ãã«ç»åçæã®ããã®ããã³ãããèšè¿°ããããã¹ããã¡ã€ã«ã§ããäŸã¯ä»¥äžã®éãã§ãã
+
+```
+# prompt 1: for generating a cat video
+A cat walks on the grass, realistic style. --w 640 --h 480 --f 25 --d 1 --s 20
+
+# prompt 2: for generating a dog image
+A dog runs on the beach, realistic style. --w 960 --h 544 --f 1 --d 2 --s 20
+```
+
+A line starting with `#` is a comment.
+
+* `--w` specifies the width of the generated image or video. The default is 256.
+* `--h` specifies the height. The default is 256.
+* `--f` specifies the number of frames. The default is 1, which generates a still image.
+* `--d` specifies the seed. The default is random.
+* `--s` specifies the number of steps in generation. The default is 20.
+* `--g` specifies the embedded guidance scale (not CFG scale). The default is 6.0 for HunyuanVideo, 10.0 for FramePack, 2.5 for FLUX.1 Kontext which is the default value during inference of each architecture. Specify 1.0 for SkyReels V1 models. Ignore this option for Wan2.1 models.
+* `--fs` specifies the discrete flow shift. The default is 14.5, which corresponds to the number of steps 20. In the HunyuanVideo paper, 7.0 is recommended for 50 steps, and 17.0 is recommended for less than 20 steps (e.g. 10). Ignore this option for FramePack models (it uses 10.0). Set 0 to use 'flux_shift' for FLUX.1 Kontext models.
+
+If you train I2V models, you must add the following option.
+
+* `--i path/to/image.png`: the image path for image2video inference. PNG, JPG and other formats are supported.
+
+If you train Wan2.1-Fun-Control models, you must add the following option.
+
+* `--cn path/to/control_video_or_dir_of_images`: the path to the video or directory containing multiple images for control.
+
+If you train the model with classifier free guidance (such as Wan2.1), you can use the additional options below.
+
+*`--n negative prompt...`: the negative prompt for the classifier free guidance. The default prompt for each model is used if omitted.
+*`--l 6.0`: the classifier free guidance scale. Should be set to 6.0 for SkyReels V1 models. 5.0 is the default value for Wan2.1 (if omitted).
+
+If you train the model with control images (such as FramePack one frame inference or FLUX.1 Kontext), you can use the additional options below.
+
+* `--ci path/to/control_image.jpg`: the control image path for inference. If you specify this option, the control image is used for inference. PNG, JPG and other formats are supported.
+
+### Sample image generation during Qwen-Image-Layered training / Qwen-Image-Layeredã®åŠç¿äžã®ãµã³ãã«ã€ã¡ãŒãžçæ
+
+`--f` option is treated as the number of output layers.
+
+The prompt can be omitted when generating sample images during Qwen-Image-Layered training. In this case, the prompt is generated based on the control image by Qwen2.5-VL.
+
+â» Since Qwen-Image-Layered models generate "original image + multiple layer images", the number of images generated is the number specified by the `--f` option + 1. The second and subsequent images are separated layer images.
+
+
+æ¥æ¬èª
+
+`#` ã§å§ãŸãè¡ã¯ã³ã¡ã³ãã§ãã
+
+* `--w` çæç»åãåç»ã®å¹
ãæå®ããŸããçç¥æã¯256ã§ãã
+* `--h` é«ããæå®ããŸããçç¥æã¯256ã§ãã
+* `--f` ãã¬ãŒã æ°ãæå®ããŸããçç¥æã¯1ã§ã鿢ç»ãçæããŸãã
+* `--d` ã·ãŒããæå®ããŸããçç¥æã¯ã©ã³ãã ã§ãã
+* `--s` çæã«ãããã¹ãããæ°ãæå®ããŸããçç¥æã¯20ã§ãã
+* `--g` embedded guidance scaleãæå®ããŸãïŒCFG scaleã§ã¯ãããŸããïŒãçç¥æã¯HunyuanVideoã¯6.0ãFramePackã¯10.0ã§ãåã¢ãŒããã¯ãã£ã®æšè«æã®ããã©ã«ãå€ã§ããSkyReels V1ã¢ãã«ã®å Žåã¯1.0ãæå®ããŠãã ãããFLUX.1 Kontextã®å Žåã¯2.5ãæå®ããŠãã ãããWan2.1ã¢ãã«ã®å Žåã¯ãã®ãªãã·ã§ã³ã¯ç¡èŠãããŸãã
+* `--fs` discrete flow shiftãæå®ããŸããçç¥æã¯14.5ã§ãã¹ãããæ°20ã®å Žåã«å¯Ÿå¿ããå€ã§ããHunyuanVideoã®è«æã§ã¯ãã¹ãããæ°50ã®å Žåã¯7.0ãã¹ãããæ°20æªæºïŒ10ãªã©ïŒã§17.0ãæšå¥šãããŠããŸããFramePackã¢ãã«ã¯ãã®ãªãã·ã§ã³ã¯ç¡èŠããã10.0ã䜿çšãããŸããFLUX.1 Kontextã¢ãã«ã§ã¯ã0ãæå®ãããš `flux_shift` ã䜿çšãããŸãã
+
+I2Vã¢ãã«ãåŠç¿ããå Žåã以äžã®ãªãã·ã§ã³ã远å ããŠãã ããã
+
+* `--i path/to/image.png`: image2videoæšè«çšã®ç»åãã¹ãPNGãJPGãªã©ã®åœ¢åŒããµããŒããããŠããŸãã
+
+Wan2.1-Fun-Controlã¢ãã«ãåŠç¿ããå Žåã以äžã®ãªãã·ã§ã³ã远å ããŠãã ããã
+
+* `--cn path/to/control_video_or_dir_of_images`: controlçšã®åç»ãŸãã¯è€æ°æã®ç»åãå«ããã£ã¬ã¯ããªã®ãã¹ã
+
+classifier free guidanceïŒãã¬ãã£ãããã³ããïŒãå¿
èŠãšããã¢ãã«ïŒWan2.1ãªã©ïŒãåŠç¿ããå Žåã以äžã®è¿œå ãªãã·ã§ã³ã䜿çšã§ããŸãã
+
+*`--n negative prompt...`: classifier free guidanceçšã®ãã¬ãã£ãããã³ãããçç¥æã¯ã¢ãã«ããšã®ããã©ã«ãããã³ããã䜿çšãããŸãã
+*`--l 6.0`: classifier free guidance scaleãSkyReels V1ã¢ãã«ã®å Žåã¯6.0ã«èšå®ããŠãã ãããWan2.1ã®å Žåã¯ããã©ã«ãå€ã5.0ã§ãïŒçç¥æïŒã
+
+å¶åŸ¡ç»åã䜿çšããã¢ãã«ïŒFramePackã®1ãã¬ãŒã æšè«ãFLUX.1 Kontextãªã©ïŒãåŠç¿ããå Žåã以äžã®è¿œå ãªãã·ã§ã³ã䜿çšã§ããŸãã
+
+* `--ci path/to/control_image.jpg`: æšè«çšã®å¶åŸ¡ç»åãã¹ããã®ãªãã·ã§ã³ãæå®ãããšãå¶åŸ¡ç»åãæšè«ã«äœ¿çšãããŸããPNGãJPGãªã©ã®åœ¢åŒããµããŒããããŠããŸãã
+
+**Qwen-Image-Layeredã®åŠç¿äžã®ãµã³ãã«ã€ã¡ãŒãžçæ**
+
+`--f`ãªãã·ã§ã³ãåºåã¬ã€ã€ãŒæ°ãšããŠæ±ãããŸãã
+
+Qwen-Image-Layeredã®åŠç¿äžã«ãµã³ãã«ç»åãçæããéãããã³ããã¯çç¥å¯èœã§ãããã®å Žåãããã³ããã¯Qwen2.5-VLã«ãã£ãŠã³ã³ãããŒã«ç»åã«åºã¥ããŠçæãããŸãã
+
+â» Qwen-Image-Layeredã¢ãã«ã¯ãå
ç»åïŒè€æ°ã®ã¬ã€ã€ãŒç»åããçæããããã`--f`ãªãã·ã§ã³ã§æå®ããæ°ïŒ1æã®ç»åãçæãããŸãã2æç®ä»¥éãåé¢ãããã¬ã€ã€ãŒç»åã§ãã
+
+
diff --git a/docs/tools.md b/docs/tools.md
new file mode 100644
index 0000000000000000000000000000000000000000..1e6b3724b0dbd4c7750572cd3d19c5c989422c24
--- /dev/null
+++ b/docs/tools.md
@@ -0,0 +1,406 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# Tools
+
+This document provides documentation for utility tools available in this project.
+
+## Table of Contents
+
+- [LoRA Post-Hoc EMA merging / LoRAã®Post-Hoc EMAããŒãž](#lora-post-hoc-ema-merging--loraã®post-hoc-emaããŒãž)
+- [Image Captioning with Qwen2.5-VL / Qwen2.5-VLã«ããç»åãã£ãã·ã§ã³çæ](#image-captioning-with-qwen25-vl--qwen25-vlã«ããç»åãã£ãã·ã§ã³çæ)
+
+## LoRA Post-Hoc EMA merging / LoRAã®Post-Hoc EMAããŒãž
+
+The LoRA Post-Hoc EMA (Exponential Moving Average) merging is a technique to combine multiple LoRA checkpoint files into a single, potentially more stable model. This method applies exponential moving average across multiple checkpoints sorted by modification time, with configurable decay rates.
+
+The Post-Hoc EMA method works by:
+
+1. Sorting checkpoint files by modification time (oldest to newest)
+2. Using the oldest checkpoint as the base
+3. Iteratively merging subsequent checkpoints with a decay rate (beta)
+4. Optionally using linear interpolation between two beta values across the merge process
+
+Pseudo-code for merging multiple checkpoints with beta=0.95 would look like this:
+
+```
+beta = 0.95
+checkpoints = [checkpoint1, checkpoint2, checkpoint3] # List of checkpoints
+merged_weights = checkpoints[0] # Use the first checkpoint as the base
+for checkpoint in checkpoints[1:]:
+ merged_weights = beta * merged_weights + (1 - beta) * checkpoint
+```
+
+### Key features:
+
+- **Temporal ordering**: Automatically sorts files by modification time
+- **Configurable decay rates**: Supports single beta value or linear interpolation between two beta values
+- **Metadata preservation**: Maintains and updates metadata from the last checkpoint
+- **Hash updating**: Recalculates model hashes for the merged weights
+- **Dtype preservation**: Maintains original data types of tensors
+
+### Usage
+
+The LoRA Post-Hoc EMA merging is available as a standalone script:
+
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py checkpoint1.safetensors checkpoint2.safetensors checkpoint3.safetensors --output_file merged_lora.safetensors --beta 0.95
+```
+
+### Command line options:
+
+```
+path [path ...]
+ List of paths to the LoRA weight files to merge
+
+--beta BETA
+ Decay rate for merging weights (default: 0.95)
+ Higher values (closer to 1.0) give more weight to the accumulated average
+ Lower values give more weight to the current checkpoint
+
+--beta2 BETA2
+ Second decay rate for linear interpolation (optional)
+ If specified, the decay rate will linearly interpolate from beta to beta2
+ across the merging process
+
+--sigma_rel SIGMA_REL
+ Relative sigma for Power Function EMA (optional, mutually exclusive with beta/beta2)
+ This resolves the issue where the first checkpoint has a disproportionately large influence when beta is specified.
+ If specified, beta is calculated using the Power Function EMA method from the paper:
+ https://arxiv.org/pdf/2312.02696. This overrides beta and beta2.
+
+--output_file OUTPUT_FILE
+ Output file path for the merged weights (required)
+
+--no_sort
+ Disable sorting of checkpoint files (merge in specified order)
+```
+
+### Examples:
+
+Basic usage with constant decay rate:
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py \
+ lora_epoch_001.safetensors \
+ lora_epoch_002.safetensors \
+ lora_epoch_003.safetensors \
+ --output_file lora_ema_merged.safetensors \
+ --beta 0.95
+```
+
+Using linear interpolation between two decay rates:
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py \
+ lora_epoch_001.safetensors \
+ lora_epoch_002.safetensors \
+ lora_epoch_003.safetensors \
+ --output_file lora_ema_interpolated.safetensors \
+ --beta 0.90 \
+ --beta2 0.95
+```
+
+Using Power Function EMA with `sigma_rel`:
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py \
+ lora_epoch_001.safetensors \
+ lora_epoch_002.safetensors \
+ lora_epoch_003.safetensors \
+ --output_file lora_power_ema_merged.safetensors \
+ --sigma_rel 0.2
+```
+
+
+#### betas for different Ï-rel values:
+
+
+
+### Recommended settings example (after training for 30 epochs, using `--beta`)
+
+If you're unsure which settings to try, start with the following "General Recommended Settings".
+
+#### 1. General Recommended Settings (start with these combinations)
+
+- **Target Epochs:** `15-30` (the latter half of training)
+- **beta:** `0.9` (a balanced value)
+
+#### 2. If training converged early
+
+- **Situation:** Loss dropped early and stabilized afterwards.
+- **Target Epochs:** `10-30` (from the epoch where loss stabilized to the end)
+- **beta:** `0.95` (wider range, smoother)
+
+#### 3. If you want to avoid overfitting
+
+- **Situation:** In the latter part of training, generated results are too similar to training data.
+- **Target Epochs:** `15-25` (focus on the peak performance range)
+- **beta:** `0.8` (more emphasis on the latter part of the range while maintaining diversity)
+
+**Note:** The optimal values may vary depending on the model and dataset. It's recommended to experiment with multiple `beta` values (e.g., 0.8, 0.9, 0.95) and compare the generated results.
+
+### Recommended Settings Example (30 epochs training, using `--sigma_rel`)
+
+When using `--sigma_rel`, the beta decay schedule is determined by the Power Function EMA method. Here are some starting points:
+
+#### 1. General Recommended Settings
+- **Target Epochs:** All epochs (from the first to the last).
+- **sigma_rel:** `0.2` (a general starting point).
+
+#### 2. If training converged early
+- **Situation:** Loss dropped early and stabilized afterwards.
+- **Target Epochs:** All epochs.
+- **sigma_rel:** `0.25` (gives more weight to earlier checkpoints, suitable for early convergence).
+
+#### 3. If you want to avoid overfitting
+- **Situation:** In the latter part of training, generated results are too similar to training data.
+- **Target Epochs:** From the first epoch, omitting the last few potentially overfitted epochs.
+- **sigma_rel:** `0.15` (gives more weight to later (but not the very last) checkpoints, helping to mitigate overfitting from the final stages).
+
+**Note:** The optimal `sigma_rel` value can depend on the dataset, model, and training duration. Experimentation is encouraged. Values typically range from 0.1 to 0.5. A graph showing the relationship between `sigma_rel` and the calculated `beta` values over epochs will be provided later to help understand its behavior.
+
+### Notes:
+
+- Files are automatically sorted by modification time, so the order in the command line doesn't matter
+- The `--sigma_rel` option is mutually exclusive with `--beta` and `--beta2`. If `--sigma_rel` is provided, it will determine the beta values, and any provided `--beta` or `--beta2` will be ignored.
+- All checkpoint files to be merged should be from the same training run, saved per epoch or step
+ - Merging is possible if shapes match, but may not work correctly as Post Hoc EMA
+- All checkpoint files must have the same alpha value
+- The merged model will have updated hash values in its metadata
+- The metadata of the merged model will be taken from the last checkpoint, with only the hash value recalculated
+- Non-float tensors (long, int, bool, etc.) are not merged and will use the first checkpoint's values
+- Processing is done in float32 precision to maintain numerical stability during merging. The original data types are preserved when saving
+
+
+æ¥æ¬èª
+
+LoRA Post-Hoc EMAïŒææ°ç§»åå¹³åïŒããŒãžã¯ãè€æ°ã®LoRAãã§ãã¯ãã€ã³ããã¡ã€ã«ãåäžã®ãããå®å®ããã¢ãã«ã«çµåããææ³ã§ããã¹ã¯ãªããã§ã¯ãä¿®æ£æå»ã§ãœãŒãïŒå€ãé ïŒãããè€æ°ã®ãã§ãã¯ãã€ã³ãã«å¯ŸããŠæå®ãããæžè¡°çã§ææ°ç§»åå¹³åãé©çšããŸããæžè¡°çã¯æå®å¯èœã§ãã
+
+Post-Hoc EMAæ¹æ³ã®åäœïŒ
+
+1. ãã§ãã¯ãã€ã³ããã¡ã€ã«ãä¿®æ£æå»é ïŒå€ããã®ããæ°ãããã®ãžïŒã«ãœãŒã
+2. æå€ã®ãã§ãã¯ãã€ã³ããããŒã¹ãšããŠäœ¿çš
+3. æžè¡°çïŒbetaïŒã䜿ã£ãŠåŸç¶ã®ãã§ãã¯ãã€ã³ããå埩çã«ããŒãž
+4. ãªãã·ã§ã³ã§ãããŒãžããã»ã¹å
šäœã§2ã€ã®ããŒã¿å€éã®ç·åœ¢è£éã䜿çš
+
+ç䌌ã³ãŒãã«ããã€ã¡ãŒãžïŒè€æ°ã®ãã§ãã¯ãã€ã³ããbeta=0.95ã§ããŒãžããå Žåãæ¬¡ã®ããã«èšç®ãããŸãã
+
+```
+beta = 0.95
+checkpoints = [checkpoint1, checkpoint2, checkpoint3] # ãã§ãã¯ãã€ã³ãã®ãªã¹ã
+merged_weights = checkpoints[0] # æåã®ãã§ãã¯ãã€ã³ããããŒã¹ãšããŠäœ¿çš
+for checkpoint in checkpoints[1:]:
+ merged_weights = beta * merged_weights + (1 - beta) * checkpoint
+```
+
+### äž»ãªç¹åŸŽïŒ
+
+- **æç³»åé åºä»ã**: ãã¡ã€ã«ãä¿®æ£æå»ã§èªåçã«ãœãŒã
+- **èšå®å¯èœãªæžè¡°ç**: åäžã®ããŒã¿å€ãŸãã¯2ã€ã®ããŒã¿å€éã®ç·åœ¢è£éããµããŒã
+- **ã¡ã¿ããŒã¿ä¿æ**: æåŸã®ãã§ãã¯ãã€ã³ãããã¡ã¿ããŒã¿ãç¶æã»æŽæ°
+- **ããã·ã¥æŽæ°**: ããŒãžãããéã¿ã®ã¢ãã«ããã·ã¥ãåèšç®
+- **ããŒã¿åä¿æ**: ãã³ãœã«ã®å
ã®ããŒã¿åãç¶æ
+
+### äœ¿çšæ³
+
+LoRA Post-Hoc EMAããŒãžã¯ç¬ç«ããã¹ã¯ãªãããšããŠæäŸãããŠããŸãïŒ
+
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py checkpoint1.safetensors checkpoint2.safetensors checkpoint3.safetensors --output_file merged_lora.safetensors --beta 0.95
+```
+
+### ã³ãã³ãã©ã€ã³ãªãã·ã§ã³ïŒ
+
+```
+path [path ...]
+ ããŒãžããLoRAéã¿ãã¡ã€ã«ã®ãã¹ã®ãªã¹ã
+
+--beta BETA
+ éã¿ããŒãžã®ããã®æžè¡°çïŒããã©ã«ãïŒ0.95ïŒ
+ é«ãå€ïŒ1.0ã«è¿ãïŒã¯çޝç©å¹³åã«ãã倧ããªéã¿ãäžããïŒå€ããã§ãã¯ãã€ã³ããéèŠïŒ
+ äœãå€ã¯çŸåšã®ãã§ãã¯ãã€ã³ãã«ãã倧ããªéã¿ãäžãã
+
+--beta2 BETA2
+ ç·åœ¢è£éã®ããã®ç¬¬2æžè¡°çïŒãªãã·ã§ã³ïŒ
+ æå®ãããå Žåãæžè¡°çã¯ããŒãžããã»ã¹å
šäœã§betaããbeta2ãžç·åœ¢è£éããã
+
+--sigma_rel SIGMA_REL
+ Power Function EMAã®ããã®çžå¯Ÿã·ã°ãïŒãªãã·ã§ã³ãbeta/beta2ãšåæã«æå®ã§ããŸããïŒ
+ betaãæå®ããå Žåã®ãæåã®ãã§ãã¯ãã€ã³ããçžå¯Ÿçã«å€§ããªåœ±é¿ãæã€æ¬ ç¹ã解決ããŸã
+ æå®ãããå Žåãbetaã¯æ¬¡ã®è«æã«åºã¥ããŠPower Function EMAæ³ã§èšç®ãããŸãïŒ
+ https://arxiv.org/pdf/2312.02696. ããã«ããbetaãšbeta2ãäžæžããããŸãã
+
+--output_file OUTPUT_FILE
+ ããŒãžãããéã¿ã®åºåãã¡ã€ã«ãã¹ïŒå¿
é ïŒ
+
+--no_sort
+ ãã§ãã¯ãã€ã³ããã¡ã€ã«ã®ãœãŒããç¡å¹ã«ããïŒæå®ããé åºã§ããŒãžïŒ
+```
+
+### äŸïŒ
+
+宿°æžè¡°çã§ã®åºæ¬çãªäœ¿çšæ³ïŒ
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py \
+ lora_epoch_001.safetensors \
+ lora_epoch_002.safetensors \
+ lora_epoch_003.safetensors \
+ --output_file lora_ema_merged.safetensors \
+ --beta 0.95
+```
+
+2ã€ã®æžè¡°çéã®ç·åœ¢è£éã䜿çšïŒ
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py \
+ lora_epoch_001.safetensors \
+ lora_epoch_002.safetensors \
+ lora_epoch_003.safetensors \
+ --output_file lora_ema_interpolated.safetensors \
+ --beta 0.90 \
+ --beta2 0.95
+```
+
+`ã·ã°ã_rel`ã䜿çšããPower Function EMAïŒ
+```bash
+python src/musubi_tuner/lora_post_hoc_ema.py \
+ lora_epoch_001.safetensors \
+ lora_epoch_002.safetensors \
+ lora_epoch_003.safetensors \
+ --output_file lora_power_ema_merged.safetensors \
+ --sigma_rel 0.2
+```
+
+### æšå¥šèšå®ã®äŸ (30ãšããã¯åŠç¿ãã `--beta`ã䜿çšããå Žå)
+
+ã©ã®èšå®ãã詊ãã°è¯ããåãããªãå Žåã¯ããŸã以äžã®ã**äžè¬çãªæšå¥šèšå®**ãããå§ããŠã¿ãŠãã ããã
+
+#### 1. äžè¬çãªæšå¥šèšå® (ãŸã詊ãã¹ãçµã¿åãã)
+
+- **察象ãšããã¯:** `15-30` (åŠç¿ã®åŸååå)
+- **beta:** `0.9` (ãã©ã³ã¹ã®åããå€)
+
+#### 2. æ©æã«åŠç¿ãåæããå Žå
+
+- **ç¶æ³:** lossãæ©ãæ®µéã§äžããããã®åŸã¯å®å®ããŠããã
+- **察象ãšããã¯:** `10-30` (lossãå®å®ãå§ãããšããã¯ããæåŸãŸã§)
+- **beta:** `0.95` (察象ç¯å²ãåºãã®ã§ãããæ»ããã«ãã)
+
+#### 3. éåŠç¿ãé¿ãããå Žå
+
+- **ç¶æ³:** åŠç¿ã®æåŸã®æ¹ã§ãçæçµæãåŠç¿ããŒã¿ã«äŒŒãããŠããã
+- **察象ãšããã¯:** `15-25` (æ§èœã®ããŒã¯ãšæãããç¯å²ã«çµã)
+- **beta:** `0.8` (ç¯å²ã®çµç€ãéèŠãã€ã€ã倿§æ§ãæ®ã)
+
+**ãã³ã:** æé©ãªå€ã¯ã¢ãã«ãããŒã¿ã»ããã«ãã£ãŠç°ãªããŸããè€æ°ã®`beta`ïŒäŸ: 0.8, 0.9, 0.95ïŒã詊ããŠãçæçµæãæ¯èŒããããšããå§ãããŸãã
+
+### æšå¥šèšå®ã®äŸ (30ãšããã¯åŠç¿ãã `--sigma_rel`ã䜿çšããå Žå)
+
+`--sigma_rel` ã䜿çšããå Žåãbetaã®æžè¡°ã¹ã±ãžã¥ãŒã«ã¯Power Function EMAæ³ã«ãã£ãŠæ±ºå®ãããŸãã以äžã¯ããã€ãã®éå§ç¹ã§ãã
+
+#### 1. äžè¬çãªæšå¥šèšå®
+- **察象ãšããã¯:** å
šãŠã®ãšããã¯ïŒæåããæåŸãŸã§ïŒ
+- **sigma_rel:** `0.2` ïŒäžè¬çãªéå§ç¹ïŒ
+
+#### 2. æ©æã«åŠç¿ãåæããå Žå
+- **ç¶æ³:** lossãæ©ãæ®µéã§äžããããã®åŸã¯å®å®ããŠããã
+- **察象ãšããã¯:** å
šãŠã®ãšããã¯
+- **sigma_rel:** `0.25` ïŒåæã®ãã§ãã¯ãã€ã³ãã«éãã眮ããããæ©æåæã«é©ããŠããŸãïŒ
+
+#### 3. éåŠç¿ãé¿ãããå Žå
+- **ç¶æ³:** åŠç¿ã®æåŸã®æ¹ã§ãçæçµæãåŠç¿ããŒã¿ã«äŒŒãããŠããã
+- **察象ãšããã¯:** æåã®ãšããã¯ãããéåŠç¿ã®å¯èœæ§ãããæåŸã®æ°ãšããã¯ãé€å€
+- **sigma_rel:** `0.15` ïŒçµç€ïŒãã ãæåŸã®æåŸã§ã¯ãªãïŒã®ãã§ãã¯ãã€ã³ãã«éãã眮ããæçµæ®µéã§ã®éåŠç¿ã軜æžããã®ã«åœ¹ç«ã¡ãŸãïŒ
+
+**ãã³ã:** æé©ãª `sigma_rel` ã®å€ã¯ãããŒã¿ã»ãããã¢ãã«ãåŠç¿æéã«ãã£ãŠç°ãªãå ŽåããããŸããå®éšãæšå¥šããŸããå€ã¯éåžž0.1ãã0.5ã®ç¯å²ã§ãã`sigma_rel` ãšãšããã¯ããšã®èšç®ããã `beta` å€ã®é¢ä¿ã瀺ãã°ã©ãã¯ããã®æåãçè§£ããã®ã«åœ¹ç«ã€ããåŸã»ã©æäŸããäºå®ã§ãã
+
+### 泚æç¹ïŒ
+
+- ãã¡ã€ã«ã¯ä¿®æ£æå»ã§èªåçã«ãœãŒãããããããã³ãã³ãã©ã€ã³ã§ã®é åºã¯é¢ä¿ãããŸãã
+- `--sigma_rel`ãªãã·ã§ã³ã¯`--beta`ããã³`--beta2`ãšçžäºã«æä»çã§ãã`--sigma_rel`ãæå®ãããå ŽåããããããŒã¿å€ã決å®ããæå®ããã`--beta`ãŸãã¯`--beta2`ã¯ç¡èŠãããŸãã
+- ããŒãžããå
šãŠã®ãã§ãã¯ãã€ã³ããã¡ã€ã«ã¯ãã²ãšã€ã®åŠç¿ã§ããšããã¯ããšããŸãã¯ã¹ãããããšã«ä¿åãããã¢ãã«ã§ããå¿
èŠããããŸã
+ - 圢ç¶ãäžèŽããŠããã°ããŒãžã¯ã§ããŸãããPost Hoc EMAãšããŠã¯æ£ããåäœããŸãã
+- alphaå€ã¯ãã¹ãŠã®ãã§ãã¯ãã€ã³ãã§åãã§ããå¿
èŠããããŸã
+- ããŒãžãããã¢ãã«ã®ã¡ã¿ããŒã¿ã¯ãæåŸã®ãã§ãã¯ãã€ã³ãã®ãã®ãå©çšãããŸããããã·ã¥å€ã®ã¿ãåèšç®ãããŸã
+- æµ®åå°æ°ç¹ä»¥å€ã®ãlongãintãboolãªã©ã®ãã³ãœã«ã¯ããŒãžãããŸããïŒæåã®ãã§ãã¯ãã€ã³ãã®ãã®ã䜿çšãããŸãïŒ
+- ããŒãžäžã®æ°å€å®å®æ§ãç¶æããããã«float32粟床ã§èšç®ãããŸããä¿åæã¯å
ã®ããŒã¿åãç¶æãããŸã
+
+
+
+## Image Captioning with Qwen2.5-VL / Qwen2.5-VLã«ããç»åãã£ãã·ã§ã³çæ
+
+The `caption_images_by_qwen_vl.py` script automatically generates captions for a directory of images using a fine-tuned Qwen2.5-VL model. It's designed to help prepare datasets for training by creating captions from the images themselves.
+
+The Qwen2.5-VL model used in Qwen-Image is not confirmed to be the same as the original Qwen2.5-VL-Instruct model, but it appears to work for caption generation based on the tests conducted.
+
+
+æ¥æ¬èª
+
+`caption_images_by_qwen_vl.py`ã¹ã¯ãªããã¯ãQwen2.5-VLã¢ãã«ã䜿çšããŠãæå®ããããã£ã¬ã¯ããªå
ã®ç»åã«å¯Ÿãããã£ãã·ã§ã³ãèªåçæããŸããç»åèªäœãããã£ãã·ã§ã³ãäœæããããšã§ãåŠç¿çšããŒã¿ã»ããã®æºåãæ¯æŽããããšãç®çãšããŠããŸãã
+
+Qwen-Imageã§äœ¿çšãããŠããQwen2.5-VLã¢ãã«ã¯ãå
ã®Qwen2.5-VL-Instructã¢ãã«ãšåããã©ããäžæã§ããã詊ããç¯å²ã§ã¯ãã£ãã·ã§ã³çæãåäœããããã§ãã
+
+
+
+### Arguments
+
+- `--image_dir` (required): Path to the directory containing the images to be captioned.
+- `--model_path` (required): Path to the Qwen2.5-VL model. See [here](./qwen_image.md#download-the-model--ã¢ãã«ã®ããŠã³ããŒã) for instructions.
+- `--output_file` (optional): Path to the output JSONL file. This is required if `--output_format` is `jsonl`.
+- `--max_new_tokens` (optional, default: 1024): The maximum number of new tokens to generate for each caption.
+- `--prompt` (optional, default: see script): A custom prompt to use for caption generation. You can use `\n` for newlines.
+- `--max_size` (optional, default: 1280): The maximum size of the image. Images are resized to fit within a `max_size` x `max_size` area while maintaining aspect ratio.
+- `--fp8_vl` (optional, flag): If specified, the Qwen2.5-VL model is loaded in fp8 precision for lower memory usage.
+- `--output_format` (optional, default: `jsonl`): The output format. Can be `jsonl` to save all captions in a single JSONL file, or `text` to save a separate `.txt` file for each image.
+
+`--max_size` can be reduced to decrease the image size passed to the VLM. This can reduce the memory usage of the VLM, but may also decrease the quality of the generated captions.
+
+The default prompt is defined in the [source file](/src/musubi_tuner/caption_images_by_qwen_vl.py). It is based on the [Qwen-Image Technical Report](https://arxiv.org/abs/2508.02324).
+
+
+æ¥æ¬èª
+
+- `--image_dir` (å¿
é ): ãã£ãã·ã§ã³ãçæããç»åãå«ãŸãããã£ã¬ã¯ããªãžã®ãã¹ã
+- `--model_path` (å¿
é ): Qwen2.5-VLã¢ãã«ãžã®ãã¹ã詳现ã¯[ãã¡ã](./qwen_image.md#download-the-model--ã¢ãã«ã®ããŠã³ããŒã)ãåç
§ããŠãã ããã
+- `--output_file` (ä»»æ): åºåå
ã®JSONLãã¡ã€ã«ãžã®ãã¹ã`--output_format`ã`jsonl`ã®å Žåã«å¿
é ã§ãã
+- `--max_new_tokens` (ä»»æ, ããã©ã«ã: 1024): åãã£ãã·ã§ã³ã§çæããæ°ããããŒã¯ã³ã®æå€§æ°ã
+- `--prompt` (ä»»æ, ããã©ã«ã: ã¹ã¯ãªããå
åç
§): ãã£ãã·ã§ã³çæã«äœ¿çšããã«ã¹ã¿ã ããã³ããã`\n`ã§æ¹è¡ãæå®ã§ããŸãã
+- `--max_size` (ä»»æ, ããã©ã«ã: 1280): ç»åã®æå€§ãµã€ãºãã¢ã¹ãã¯ãæ¯ãç¶æãããŸãŸãç»åã®åèšãã¯ã»ã«æ°ã`max_size` x `max_size`ã®é åã«åãŸãããã«ãªãµã€ãºãããŸãã
+- `--fp8_vl` (ä»»æ, ãã©ã°): æå®ãããå ŽåãQwen2.5-VLã¢ãã«ãfp8粟床ã§èªã¿èŸŒãŸããã¡ã¢ãªäœ¿çšéãåæžãããŸãã
+- `--output_format` (ä»»æ, ããã©ã«ã: `jsonl`): åºå圢åŒã`jsonl`ãæå®ãããšãã¹ãŠã®ãã£ãã·ã§ã³ãåäžã®JSONLãã¡ã€ã«ã«ä¿åããã`text`ãæå®ãããšç»åããšã«åå¥ã®`.txt`ãã¡ã€ã«ãä¿åãããŸãã
+
+`--max_size` ãå°ãããããšVLMã«æž¡ãããç»åãµã€ãºãå°ãããªããŸããããã«ãããVLMã®ã¡ã¢ãªäœ¿çšéãåæžãããŸãããçæããããã£ãã·ã§ã³ã®å質ãäœäžããå¯èœæ§ããããŸãã
+
+ããã³ããã®ããã©ã«ãã¯ã[ãœãŒã¹ãã¡ã€ã«](/src/musubi_tuner/caption_images_by_qwen_vl.py)å
ã§å®çŸ©ãããŠããŸãã[Qwen-Image Technical Report](https://arxiv.org/abs/2508.02324)ãåèã«ãããã®ã§ãã
+
+
+
+### Usage Examples
+
+**1. Basic Usage (JSONL Output)**
+
+```bash
+python src/musubi_tuner/caption_images_by_qwen_vl.py \
+ --image_dir /path/to/images \
+ --model_path /path/to/qwen_model.safetensors \
+ --output_file /path/to/captions.jsonl
+```
+
+**2. Text File Output**
+
+This will create a `.txt` file with the same name as each image in the `/path/to/images` directory.
+
+```bash
+python src/musubi_tuner/caption_images_by_qwen_vl.py \
+ --image_dir /path/to/images \
+ --model_path /path/to/qwen_model.safetensors \
+ --output_format text
+```
+
+**3. Advanced Usage (fp8, Custom Prompt, and Max Size)**
+
+```bash
+python src/musubi_tuner/caption_images_by_qwen_vl.py \
+ --image_dir /path/to/images \
+ --model_path /path/to/qwen_model.safetensors \
+ --output_file /path/to/captions.jsonl \
+ --fp8_vl \
+ --max_size 1024 \
+ --prompt "A detailed and descriptive caption for this image is:\n"
+```
diff --git a/docs/torch_compile.md b/docs/torch_compile.md
new file mode 100644
index 0000000000000000000000000000000000000000..7a940321b1f7ca52d60dc9eec6f1b17ab075906c
--- /dev/null
+++ b/docs/torch_compile.md
@@ -0,0 +1,399 @@
+# torch.compile Support
+
+## Overview / æŠèŠ
+
+This document describes the `torch.compile` optimization feature in Musubi Tuner. PyTorch's `torch.compile` is a just-in-time (JIT) compilation feature that can significantly improve training and inference performance by optimizing model execution.
+
+For technical details and implementation specifics, please refer to [Pull Request #722](https://github.com/kohya-ss/musubi-tuner/pull/722).
+
+Also, refer to the official PyTorch documentation: https://docs.pytorch.org/tutorials/intermediate/torch_compile_tutorial.html#introduction-to-torch-compile
+
+Note: `torch.compile` may not work well in various situations. Please refer to the "Limitations and Known Issues" section below for details. If it does not work, please use the traditional method for training/inference.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã§ã¯ãMusubi Tunerã«ããã`torch.compile`æé©åæ©èœã«ã€ããŠèª¬æããŸããPyTorchã®`torch.compile`ã¯ãã¢ãã«ã®å®è¡ãæé©åããããšã§åŠç¿ãšæšè«ã®ããã©ãŒãã³ã¹ã倧å¹
ã«åäžãããããšãã§ãããžã£ã¹ãã€ã³ã¿ã€ã (JIT)ã³ã³ãã€ã«æ©èœã§ãã
+
+æè¡çãªè©³çްãå®è£
ã®è©³çްã«ã€ããŠã¯ã[Pull Request #722](https://github.com/kohya-ss/musubi-tuner/pull/722)ãåç
§ããŠãã ããã
+
+PyTorchã®å
¬åŒããã¥ã¡ã³ããåç
§ããŠãã ãã: https://docs.pytorch.org/tutorials/intermediate/torch_compile_tutorial.html#introduction-to-torch-compile
+
+â» `torch.compile`ã¯æ§ã
ãªèŠå ã§ããŸãåäœããªãå ŽåããããŸãã詳现ã¯ä»¥äžã®ãå¶éäºé
ãšæ¢ç¥ã®åé¡ãã»ã¯ã·ã§ã³ãåç
§ããŠãã ããããŸãåäœããªãå Žåã«ã¯åŸæ¥ã®æ¹æ³ã§ã®åŠç¿/æšè«ãè¡ã£ãŠãã ããã
+
+
+
+### Prerequisites / åææ¡ä»¶
+
+- triton is required for `torch.compile` to work effectively. For Windows, see [triton-windows repository](https://github.com/woct0rdho/triton-windows) for installation instructions.
+- MSVC compiler is required on Windows for `--compile_dynamic` option. Visual Studio 2022 with C++ development tools or Visual Studio Build Tools 2022 is recommended. See [Windows Requirements for `--compile_dynamic`](#windows-requirements-for---compile_dynamic--windowsã§ã®---compile_dynamic-ã®èŠä»¶).
+
+
+æ¥æ¬èª
+
+- `torch.compile`ã广çã«åäœãããã«ã¯tritonãå¿
èŠã§ããWindowsã®å Žåãã€ã³ã¹ããŒã«æé ã«ã€ããŠã¯[triton-windowsãªããžããª](https://github.com/woct0rdho/triton-windows)ãåç
§ããŠãã ããã
+- Windowsã§`--compile_dynamic`ãªãã·ã§ã³ã䜿çšããã«ã¯MSVCã³ã³ãã€ã©ãå¿
èŠã§ããVisual Studio 2022ã®C++éçºããŒã«ãŸãã¯Visual Studio Build Tools 2022ã®äœ¿çšãæšå¥šããŸãã[`--compile_dynamic`ã®WindowsèŠä»¶](#windows-requirements-for---compile_dynamic--windowsã§ã®---compile_dynamic-ã®èŠä»¶)ãåç
§ããŠãã ããã
+
+
+
+### Performance Improvements / ããã©ãŒãã³ã¹åäž
+
+The performance gains vary depending on hardware and settings. Here are some examples:
+
+**Qwen-Image, 1328Ã1328, BS1: RTX A6000, Power Limit 180W, Windows:**
+- Default mode: ~10.5% faster
+- max-autotune-no-cudagraphs: ~11.1% faster
+
+**RTX PRO 6000 Blackwell, Power Limit 250W, Windows:**
+- Default mode: ~18.8% faster
+- max-autotune-no-cudagraphs: ~25.2% faster
+
+
+æ¥æ¬èª
+
+ããã©ãŒãã³ã¹åäžã¯ãããŒããŠã§ã¢ãšèšå®ã«ãã£ãŠç°ãªããŸãã以äžã¯äžäŸã§ã:
+
+**Qwen-Image, 1328Ã1328, BS1: RTX A6000, Power Limit 180W, Windows:**
+- ããã©ã«ãã¢ãŒã: çŽ10.5%é«éå
+- max-autotune-no-cudagraphs: çŽ11.1%é«éå
+
+**RTX PRO 6000 Blackwell, Power Limit 250W, Windows:**
+- ããã©ã«ãã¢ãŒã: çŽ18.8%é«éå
+- max-autotune-no-cudagraphs: çŽ25.2%é«éå
+
+
+
+## Supported Architectures / ãµããŒããããŠããã¢ãŒããã¯ãã£
+
+`torch.compile` is supported for both training and inference in the following architectures:
+
+- HunyuanVideo
+- Wan2.1/2.2
+- FramePack
+- FLUX.1 Kontext
+- Qwen-Image / Qwen-Image-Edit / Qwen-Image-Edit-2509
+
+
+æ¥æ¬èª
+
+以äžã®ã¢ãŒããã¯ãã£ã§ãåŠç¿ãšæšè«ã®äž¡æ¹ã«ãããŠ`torch.compile`ããµããŒããããŠããŸã:
+
+- HunyuanVideo
+- Wan2.1/2.2
+- FramePack
+- FLUX.1 Kontext
+- Qwen-Image / Qwen-Image-Edit / Qwen-Image-Edit-2509
+
+
+
+## Command Line Arguments / ã³ãã³ãã©ã€ã³åŒæ°
+
+### Basic Arguments / åºæ¬çãªåŒæ°
+
+- `--compile`: Enable torch.compile optimization
+- `--compile_backend`: Backend to use (default: `inductor`)
+- `--compile_mode`: Compilation mode (default: `default` for training, `max-autotune-no-cudagraphs` for inference)
+ - Choices: `default`, `reduce-overhead`, `max-autotune`, `max-autotune-no-cudagraphs`
+- `--compile_dynamic`: Enable dynamic shapes support (default is None, equivalent to `auto`) (Requires Visual Studio 2022 C++ compiler on Windows)
+ - Choices: `true`, `false`, `auto`
+- `--compile_fullgraph`: Enable fullgraph mode
+- `--compile_cache_size_limit`: Set cache size limit (default: PyTorch default, typically 8-32, recommended: 32)
+
+So far, it has been observed that setting `compile_mode` to `max-autotune` may not work in some cases.
+Also, `compile_fullgraph` may not work depending on the architecture.
+
+If `compile_dynamic` is not set to `true`, recompilation will occur each time the shape of the model input changes. This may result in longer training times for the first epoch, but subsequent epochs will be faster.
+
+### Additional Performance Arguments / 远å ã®ããã©ãŒãã³ã¹åŒæ°
+
+- `--cuda_allow_tf32`: Allow TF32 precision on Ampere or newer GPUs (improves performance)
+- `--cuda_cudnn_benchmark`: Enable cuDNN benchmark mode (may improve performance)
+
+
+æ¥æ¬èª
+
+### åºæ¬çãªåŒæ°
+
+- `--compile`: torch.compileæé©åãæå¹ã«ãã
+- `--compile_backend`: 䜿çšããããã¯ãšã³ãïŒããã©ã«ã: `inductor`ïŒ
+- `--compile_mode`: ã³ã³ãã€ã«ã¢ãŒãïŒããã©ã«ã: åŠç¿æã¯`default`ãæšè«æã¯`max-autotune-no-cudagraphs`ïŒ
+ - éžæè¢: `default`, `reduce-overhead`, `max-autotune`, `max-autotune-no-cudagraphs`
+- `--compile_dynamic`: åç圢ç¶ãµããŒããæå®ããïŒããã©ã«ã㯠None ã§ `auto` çžåœïŒïŒWindowsç°å¢ã§ã¯Visual Studio 2022ã®C++ã³ã³ãã€ã©ãå¿
èŠïŒ
+ - éžæè¢: `true`, `false`, `auto`
+- `--compile_fullgraph`: ãã«ã°ã©ãã¢ãŒããæå¹ã«ãã
+- `--compile_cache_size_limit`: ãã£ãã·ã¥ãµã€ãºå¶éãèšå®ïŒããã©ã«ã: PyTorchã®ããã©ã«ããéåžž8-32ãæšå¥š: 32ïŒ
+
+ãããŸã§ã«ç¢ºèªãããšããã`compile_mode`ã¯`max-autotune`ã«èšå®ãããšåäœããªãã±ãŒã¹ãããããã§ãã
+ãŸãã`compile_fullgraph`ã¯ã¢ãŒããã¯ãã£ã«ããåäœããªãå ŽåããããŸãã
+
+`compile_dynamic`ã§ `true` ãæå®ããªãå Žåãã¢ãã«ã®å
¥åã®åœ¢ç¶ãå€ããããšã«åã³ã³ãã€ã«ãçºçããŸããæåã®ãšããã¯ã®åŠç¿æéãé·ããªãå¯èœæ§ããããŸããããã®åŸã®ãšããã¯ã§ã¯é«éåãããŸãã
+
+### 远å ã®ããã©ãŒãã³ã¹åŒæ°
+
+- `--cuda_allow_tf32`: AmpereãŸãã¯ãã以éã®GPUã§TF32粟床ãèš±å¯ããïŒããã©ãŒãã³ã¹åäžïŒ
+- `--cuda_cudnn_benchmark`: cuDNNãã³ãããŒã¯ã¢ãŒããæå¹ã«ããïŒããã©ãŒãã³ã¹ãåäžããå¯èœæ§ãããïŒ
+
+
+
+## Usage Examples / 䜿çšäŸ
+
+### Training / åŠç¿
+
+#### Basic Usage / åºæ¬çãªäœ¿ãæ¹
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 \
+ src/musubi_tuner/qwen_image_train_network.py \
+ --dit path/to/dit \
+ --dataset_config path/to/config.toml \
+ (... other args ...) \
+ --compile \
+ --compile_cache_size_limit 32
+```
+
+â» Windows Command Prompt users should use ^ at the end of lines.
+
+#### Advanced Usage / é«åºŠãªäœ¿ãæ¹
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 \
+ src/musubi_tuner/hv_train_network.py \
+ --dit path/to/dit \
+ --dataset_config path/to/config.toml \
+ (... other args ...) \
+ --compile \
+ --compile_mode max-autotune-no-cudagraphs \
+ --compile_cache_size_limit 32 \
+ --cuda_allow_tf32 \
+ --cuda_cudnn_benchmark
+```
+
+
+æ¥æ¬èª
+
+### åŠç¿
+
+#### åºæ¬çãªäœ¿ãæ¹
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 \
+ src/musubi_tuner/qwen_image_train_network.py \
+ --dit path/to/dit \
+ --dataset_config path/to/config.toml \
+ (... ãã®ä»ã®åŒæ° ...) \
+ --compile \
+ --compile_cache_size_limit 32
+```
+
+â» Windowsã§ã³ãã³ãããã³ããã䜿çšããå Žåãæ«å°Ÿã¯ ^ ã䜿çšããŠãã ããã
+
+#### é«åºŠãªäœ¿ãæ¹
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 \
+ src/musubi_tuner/hv_train_network.py \
+ --dit path/to/dit \
+ --dataset_config path/to/config.toml \
+ (... ãã®ä»ã®åŒæ° ...) \
+ --compile \
+ --compile_mode max-autotune-no-cudagraphs \
+ --compile_cache_size_limit 32 \
+ --cuda_allow_tf32 \
+ --cuda_cudnn_benchmark
+```
+
+
+
+### Inference / æšè«
+
+```bash
+python src/musubi_tuner/qwen_image_generate_image.py \
+ --dit path/to/dit \
+ --vae path/to/vae \
+ --text_encoder path/to/text_encoder \
+ --prompt "A beautiful landscape" \
+ --compile \
+ --compile_mode max-autotune-no-cudagraphs
+```
+
+The existing `--compile_args` option is deprecated. It is still available for now but will be removed in the future. Please use the new individual arguments as shown in the example above.
+
+
+æ¥æ¬èª
+
+### æšè«
+
+```bash
+python src/musubi_tuner/qwen_image_generate_image.py \
+ --dit path/to/dit \
+ --vae path/to/vae \
+ --text_encoder path/to/text_encoder \
+ --prompt "A beautiful landscape" \
+ --compile \
+ --compile_mode max-autotune-no-cudagraphs
+```
+
+æ¢åã® `--compile_args` ãªãã·ã§ã³ã¯éæšå¥šãšãªããŸãããçŸæç¹ã§ã¯äœ¿çšå¯èœã§ãããå°æ¥çã«ã¯åé€ãããäºå®ã§ããäžã®äœ¿çšäŸã®ããã«ãæ°ããåå¥ã®åŒæ°ã䜿çšããŠãã ããã
+
+
+
+## Limitations and Known Issues / å¶éäºé
ãšæ¢ç¥ã®åé¡
+
+### Incompatible Options and Constraints / äºææ§ã®ãªããªãã·ã§ã³ãšå¶çŽ
+
+- **`--compile_fullgraph` and `--split_attn`**: These options cannot be used together. The `--split_attn` option uses dynamic control flow that is incompatible with fullgraph mode.
+- **`--blocks_to_swap`**: When using block swapping, `torch.compile` automatically disables compilation for Linear layers in swapped blocks to avoid conflicts. This may limit performance improvements.
+
+### Windows Requirements for `--compile_dynamic` / Windowsã§ã® `--compile_dynamic` ã®èŠä»¶
+
+**IMPORTANT**: On Windows, using `--compile_dynamic` requires:
+
+1. **Visual Studio 2022** with C++ development tools installed
+2. Either:
+ - Running the training/inference script from **"x64 Native Tools Command Prompt for VS 2022"**
+ - Running the training/inference script after setting environment variables by executing `vcvars64.bat` located in the Visual Studio installation directory. For example: `"C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat"`
+
+If you encounter compilation errors when using `--compile_dynamic` on Windows, make sure you are running from the correct command prompt.
+
+
+
+
+æ¥æ¬èª
+
+**äºææ§ã®ãªããªãã·ã§ã³ãšå¶çŽ**
+
+- **`--compile_fullgraph` ãš `--split_attn`**: ãããã®ãªãã·ã§ã³ã¯åæã«äœ¿çšã§ããŸããã`--split_attn`ãªãã·ã§ã³ã¯åçãªå¶åŸ¡ãããŒã䜿çšããŠããããã«ã°ã©ãã¢ãŒããšäºææ§ããããŸããã
+- **`--blocks_to_swap`**: ãããã¯ã¹ã¯ããã³ã°ã䜿çšããå Žåã`torch.compile`ã¯è¡çªãé¿ãããããã¹ã¯ããããããããã¯å
ã®Linearã¬ã€ã€ãŒã®ã³ã³ãã€ã«ãèªåçã«ç¡å¹ã«ããŸãããã®ãããé床åäžãå¶éãããå¯èœæ§ããããŸãã
+
+**Windowsã§ã® `--compile_dynamic` ã®èŠä»¶**
+
+**éèŠ**: Windowsã§`--compile_dynamic`ã䜿çšããå Žåã以äžãå¿
èŠã§ã:
+
+1. **Visual Studio 2022** ãšC++éçºããŒã«ã®ã€ã³ã¹ããŒã«
+2. 以äžã®ããããïŒ
+ - **"x64 Native Tools Command Prompt for VS 2022"** ããã®ã¹ã¯ãªããå®è¡
+ - vcvars64.batãå®è¡ããŠç°å¢å€æ°ãèšå®ããåŸã«ã¹ã¯ãªãããå®è¡ïŒVisual Studioã®ã€ã³ã¹ããŒã«ãã£ã¬ã¯ããªã«ãã`vcvars64.bat`ãå®è¡ããŠç°å¢å€æ°ãèšå®ããŸããäŸ: `"C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat"`
+
+Windowsã§`--compile_dynamic`ã䜿çšããŠã³ã³ãã€ã«ãšã©ãŒãçºçããå Žåã¯ãæ£ããæé ã§ã³ãã³ãããã³ããããå®è¡ããŠããããšã確èªããŠãã ããã
+
+PyTorchã®ä»¥äžã®å
¬åŒããã¥ã¡ã³ããåç
§ããŠãã ãã: https://docs.pytorch.org/tutorials/unstable/inductor_windows.html#install-a-compiler
+
+
+
+## Recommended Settings / æšå¥šèšå®
+
+### For Training / åŠç¿åã
+
+```bash
+--compile \
+--compile_mode default \
+--compile_cache_size_limit 32 \
+--cuda_allow_tf32 \
+--cuda_cudnn_benchmark
+```
+
+### For Inference / æšè«åã
+
+```bash
+--compile \
+--compile_mode max-autotune-no-cudagraphs \
+--compile_cache_size_limit 32
+```
+
+
+æ¥æ¬èª
+
+### åŠç¿åã
+
+```bash
+--compile \
+--compile_mode default \
+--compile_cache_size_limit 32 \
+--cuda_allow_tf32 \
+--cuda_cudnn_benchmark
+```
+
+### æšè«åã
+
+```bash
+--compile \
+--compile_mode max-autotune-no-cudagraphs \
+--compile_cache_size_limit 32
+```
+
+
+
+## Compilation Modes / ã³ã³ãã€ã«ã¢ãŒã
+
+- **`default`**: Balanced compilation with good performance and reasonable compile times. Recommended for training.
+- **`reduce-overhead`**: Reduces Python overhead, useful for small models or frequent small operations.
+- **`max-autotune`**: Maximum optimization with longer compile times. May provide best performance but increases initial compilation time. May not work on some architectures.
+- **`max-autotune-no-cudagraphs`**: Similar to max-autotune but without CUDA graphs. Recommended for inference as it provides good performance improvements with better compatibility.
+
+
+æ¥æ¬èª
+
+- **`default`**: ãã©ã³ã¹ã®åããã³ã³ãã€ã«ã§ãé©åãªããã©ãŒãã³ã¹ãšåççãªã³ã³ãã€ã«æéãæäŸããŸããåŠç¿ã«æšå¥šãããŸãã
+- **`reduce-overhead`**: Pythonã®ãªãŒããŒããããåæžããŸããå°ããªã¢ãã«ãé »ç¹ãªå°èŠæš¡æäœã«æçšã§ãã
+- **`max-autotune`**: ã³ã³ãã€ã«æéã¯é·ããªããŸãããæå€§éã®æé©åãè¡ããŸããæé«ã®ããã©ãŒãã³ã¹ãæäŸããå¯èœæ§ããããŸãããåæã³ã³ãã€ã«æéãå¢å ããŸããã¢ãŒããã¯ãã£ã«ãã£ãŠã¯åäœããªãå ŽåããããŸãã
+- **`max-autotune-no-cudagraphs`**: max-autotuneãšäŒŒãŠããŸãããCUDAã°ã©ãã䜿çšããŸãããè¯å¥œãªäºææ§ã§åªããããã©ãŒãã³ã¹åäžãæäŸãããããæšè«ã«æšå¥šãããŸãã
+
+
+
+## Troubleshooting / ãã©ãã«ã·ã¥ãŒãã£ã³ã°
+
+### First Iteration is Slow
+
+This is expected behavior. `torch.compile` performs JIT compilation on the first forward pass, which takes extra time. Subsequent iterations will be much faster.
+
+### Out of Memory Errors
+
+If you encounter out-of-memory errors when using `torch.compile`, try:
+- Using a smaller `--compile_cache_size_limit` value
+- Reducing batch size
+- Using `--compile_mode default` instead of `max-autotune`
+
+### Compilation Errors on Windows
+
+If using `--compile_dynamic` on Windows and encountering compilation errors:
+1. Ensure Visual Studio 2022 with C++ development tools is installed
+2. Run the script from "x64 Native Tools Command Prompt for VS 2022"
+3. If issues persist, try without `--compile_dynamic`
+
+
+æ¥æ¬èª
+
+**æåã®ã€ãã¬ãŒã·ã§ã³ãé
ã**
+
+ããã¯äºæ³ãããåäœã§ãã`torch.compile`ã¯æåã®forward passã§JITã³ã³ãã€ã«ãå®è¡ããããã远å ã®æéãããããŸãããã®åŸã®ã€ãã¬ãŒã·ã§ã³ã¯ã¯ããã«é«éã«ãªããŸãã
+
+**ã¡ã¢ãªäžè¶³ãšã©ãŒ**
+
+`torch.compile`ã䜿çšããŠã¡ã¢ãªäžè¶³ãšã©ãŒãçºçããå Žåã¯ã次ã詊ããŠãã ãã:
+- ããå°ããª`--compile_cache_size_limit`å€ã䜿çšãã
+- ããããµã€ãºãæžãã
+- `max-autotune`ã®ä»£ããã«`--compile_mode default`ã䜿çšãã
+
+**Windowsã§ã®ã³ã³ãã€ã«ãšã©ãŒ**
+
+Windowsã§`--compile_dynamic`ã䜿çšããŠã³ã³ãã€ã«ãšã©ãŒãçºçããå Žå:
+1. C++éçºããŒã«ãå«ãVisual Studio 2022ãã€ã³ã¹ããŒã«ãããŠããããšã確èªãã
+2. "x64 Native Tools Command Prompt for VS 2022"ããã¹ã¯ãªãããå®è¡ãã
+3. åé¡ã解決ããªãå Žåã¯ã`--compile_dynamic`ãªãã§è©Šã
+
+
+
+## Additional Resources / 远å ãªãœãŒã¹
+
+- [PyTorch torch.compile documentation](https://docs.pytorch.org/tutorials/intermediate/torch_compile_tutorial.html)
+- [PyTorch Inductor Windows documentation](https://docs.pytorch.org/tutorials/unstable/inductor_windows.html)
+- [Pull Request #722](https://github.com/kohya-ss/musubi-tuner/pull/722) - Technical implementation details
+
+
+æ¥æ¬èª
+
+- [PyTorch torch.compile ããã¥ã¡ã³ã](https://docs.pytorch.org/tutorials/intermediate/torch_compile_tutorial.html)
+- [PyTorch Inductor Windows ããã¥ã¡ã³ã](https://docs.pytorch.org/tutorials/unstable/inductor_windows.html)
+- [Pull Request #722](https://github.com/kohya-ss/musubi-tuner/pull/722) - æè¡çãªå®è£
ã®è©³çް
+
+
diff --git a/docs/wan.md b/docs/wan.md
new file mode 100644
index 0000000000000000000000000000000000000000..f93661874386ab440aff37c1650bb1429bf53761
--- /dev/null
+++ b/docs/wan.md
@@ -0,0 +1,628 @@
+> ð Click on the language section to expand / èšèªãã¯ãªãã¯ããŠå±é
+
+# Wan 2.1/2.2
+
+## Overview / æŠèŠ
+
+This is an unofficial training and inference script for [Wan2.1](https://github.com/Wan-Video/Wan2.1) and [Wan2.2](https://github.com/Wan-Video/Wan2.2). The features are as follows.
+
+- fp8 support and memory reduction by block swap: Inference of a 720x1280x81frames videos with 24GB VRAM, training with 720x1280 images with 24GB VRAM
+- Inference without installing Flash attention (using PyTorch's scaled dot product attention)
+- Supports xformers (training and inference) and Sage attention (inference only)
+- Support for Wan2.2 model architecture, only for 14B models
+
+This feature is experimental.
+
+
+æ¥æ¬èª
+
+[Wan2.1](https://github.com/Wan-Video/Wan2.1) ããã³ [Wan2.2](https://github.com/Wan-Video/Wan2.2) ã®éå
¬åŒã®åŠç¿ããã³æšè«ã¹ã¯ãªããã§ãã
+
+以äžã®ç¹åŸŽããããŸãã
+
+- fp8察å¿ããã³block swapã«ããçã¡ã¢ãªåïŒ720x1280x81framesã®åç»ã24GB VRAMã§æšè«å¯èœã720x1280ã®ç»åã§ã®åŠç¿ã24GB VRAMã§å¯èœ
+- Flash attentionã®ã€ã³ã¹ããŒã«ãªãã§ã®å®è¡ïŒPyTorchã®scaled dot product attentionã䜿çšïŒ
+- xformersïŒåŠç¿ãšæšè«ïŒããã³Sage attentionïŒæšè«ã®ã¿ïŒå¯Ÿå¿
+- Wan2.2ã¢ãã«ã¢ãŒããã¯ãã£ã®ãµããŒãïŒ14Bã¢ãã«ã®ã¿ïŒ
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+### Wan2.1
+
+Download the T5 `models_t5_umt5-xxl-enc-bf16.pth` and CLIP `models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth` from the following page: https://huggingface.co/Wan-AI/Wan2.1-I2V-14B-720P/tree/main
+
+Download the VAE from the above page `Wan2.1_VAE.pth` or download `split_files/vae/wan_2.1_vae.safetensors` from the following page: https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/tree/main/split_files/vae
+
+Download the DiT weights from the following page: https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/tree/main/split_files/diffusion_models
+
+Wan2.1 Fun Control model weights can be downloaded from [here](https://huggingface.co/alibaba-pai/Wan2.1-Fun-14B-Control). Navigate to each weight page and download. The Fun Control model seems to support not only T2V but also I2V tasks.
+
+Please select the appropriate weights according to T2V, I2V, resolution, model size, etc.
+
+`fp16` and `bf16` models can be used, and `fp8_e4m3fn` models can be used if `--fp8` (or `--fp8_base`) is specified without specifying `--fp8_scaled`. **Please note that `fp8_scaled` models are not supported even with `--fp8_scaled`.**
+
+(Thanks to Comfy-Org for providing the repackaged weights.)
+
+### Wan2.2
+
+T5 is same as Wan2.1. CLIP is not required for Wan2.2.
+
+VAE is also same as Wan2.1. Please use `Wan2.1_VAE.pth` from the above page. `Wan2.2_VAE.pth` is for 5B model, not compatible with 14B model.
+
+Download the DiT weights from the following page: https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged/tree/main/split_files/diffusion_models
+
+The Wan2.2 model consists of two DiT models, one for high noise and one for low noise. Please download both.
+
+`fp16` models can be used. **Please note that `fp8_scaled` models are not supported even with `--fp8_scaled`.**
+
+### Model support matrix / ã¢ãã«ãµããŒããããªãã¯ã¹
+
+* columns: training dtype (è¡ïŒåŠç¿æã®ããŒã¿å)
+* rows: model dtype (åïŒã¢ãã«ã®ããŒã¿å)
+
+| model \ training |bf16|fp16|--fp8_base|--fp8base & --fp8_scaled|
+|---|---|---|---|---|
+|bf16|â|--|â|â|
+|fp16|--|â|â|â|
+|fp8_e4m3fn|--|--|â|--|
+|fp8_scaled|--|--|--|--|
+
+
+æ¥æ¬èª
+
+### Wan2.1
+
+T5 `models_t5_umt5-xxl-enc-bf16.pth` ããã³CLIP `models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth` ããæ¬¡ã®ããŒãžããããŠã³ããŒãããŠãã ããïŒhttps://huggingface.co/Wan-AI/Wan2.1-I2V-14B-720P/tree/main
+
+VAEã¯äžã®ããŒãžãã `Wan2.1_VAE.pth` ãããŠã³ããŒãããããæ¬¡ã®ããŒãžãã `split_files/vae/wan_2.1_vae.safetensors` ãããŠã³ããŒãããŠãã ããïŒhttps://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/tree/main/split_files/vae
+
+DiTã®éã¿ã次ã®ããŒãžããããŠã³ããŒãããŠãã ããïŒhttps://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/tree/main/split_files/diffusion_models
+
+Wan2.1 Fun Controlã¢ãã«ã®éã¿ã¯ã[ãã¡ã](https://huggingface.co/alibaba-pai/Wan2.1-Fun-14B-Control)ãããããããã®éã¿ã®ããŒãžã«é·ç§»ããããŠã³ããŒãããŠãã ãããFun Controlã¢ãã«ã¯T2Vã ãã§ãªãI2Vã¿ã¹ã¯ã«ã察å¿ããŠããããã§ãã
+
+T2VãI2Vãè§£å床ãã¢ãã«ãµã€ãºãªã©ã«ããé©åãªéã¿ãéžæããŠãã ããã
+
+`fp16` ããã³ `bf16` ã¢ãã«ã䜿çšã§ããŸãããŸãã`--fp8` ïŒãŸãã¯`--fp8_base`ïŒãæå®ã`--fp8_scaled`ãæå®ãããªããšãã«ã¯ `fp8_e4m3fn` ã¢ãã«ã䜿çšã§ããŸãã**`fp8_scaled` ã¢ãã«ã¯ãããã®å ŽåããµããŒããããŠããŸããã®ã§ã泚æãã ããã**
+
+ïŒrepackagedçã®éã¿ãæäŸããŠãã ãã£ãŠããComfy-Orgã«æè¬ããããŸããïŒ
+
+### Wan2.2
+
+T5ã¯Wan2.1ãšåãã§ããWan2.2ã§ã¯CLIPã¯äžèŠã§ãã
+
+VAEã¯äžã®ããŒãžãã `Wan2.1_VAE.pth` ãããŠã³ããŒãããŠãã ããã`Wan2.2_VAE.pth` ã¯5Bã¢ãã«çšã§ã14Bã¢ãã«ã«ã¯å¯Ÿå¿ããŠããŸããã
+
+DiTã®éã¿ã次ã®ããŒãžããããŠã³ããŒãããŠãã ããïŒhttps://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged/tree/main/split_files/diffusion_models
+
+Wan2.2ã¢ãã«ã¯é«ãã€ãºçšãšäœãã€ãºçšã®2ã€ã®DiTã¢ãã«ã§æ§æãããŠããŸããäž¡æ¹ãããŠã³ããŒãããŠãã ããã
+
+`fp16` ã¢ãã«ã䜿çšã§ããŸãã**`fp8_scaled` ã¢ãã«ã¯ãµããŒããããŸããã®ã§ã泚æãã ããã**
+
+
+
+## Pre-caching / äºåãã£ãã·ã¥
+
+Pre-caching is almost the same as in HunyuanVideo, but some options may differ. See [HunyuanVideo documentation](./hunyuan_video.md#pre-caching--äºåãã£ãã·ã³ã°) and `--help` for details.
+
+### Latent Pre-caching
+
+Create the cache using the following command:
+
+```bash
+python src/musubi_tuner/wan_cache_latents.py --dataset_config path/to/toml --vae path/to/wan_vae.safetensors
+```
+
+**If you train I2V models, add `--i2v` option to the above command.** For Wan2.1, add `--clip path/to/models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth` to specify the CLIP model. If not specified, the training will raise an error. For Wan2.2, CLIP model is not required.
+
+If you're running low on VRAM, specify `--vae_cache_cpu` to use the CPU for the VAE internal cache, which will reduce VRAM usage somewhat.
+
+The control video settings are required for training the Fun-Control model. Please refer to [Dataset Settings](./dataset_config.md#sample-for-video-dataset-with-control-images) for details.
+
+
+æ¥æ¬èª
+
+äºåãã£ãã·ã³ã°ã¯HunyuanVideoãšã»ãŒåãã§ãããªãã·ã§ã³ãç°ãªãå ŽåããããŸãã®ã§ã詳现ã¯[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md#pre-caching--äºåãã£ãã·ã³ã°)ããã³`--help`ãåç
§ããŠãã ããã
+
+latentã®äºåãã£ãã·ã³ã°ã¯äžã®ã³ãã³ãäŸã䜿çšããŠãã£ãã·ã¥ãäœæããŠãã ããã
+
+**I2Vã¢ãã«ãåŠç¿ããå Žåã¯ã`--i2v` ãªãã·ã§ã³ãäžã®ã³ãã³ãã«è¿œå ããŠãã ããã**Wan2.1ã®å Žåã¯ã`--clip path/to/models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth` ã远å ããŠCLIPã¢ãã«ãæå®ããŠãã ãããæå®ããªããšåŠç¿æã«ãšã©ãŒãçºçããŸããWan2.2ã§ã¯CLIPã¢ãã«ã¯äžèŠã§ãã
+
+VRAMãäžè¶³ããŠããå Žåã¯ã`--vae_cache_cpu` ãæå®ãããšVAEã®å
éšãã£ãã·ã¥ã«CPUã䜿ãããšã§ã䜿çšVRAMãå€å°åæžã§ããŸãã
+
+Fun-Controlã¢ãã«ãåŠç¿ããå Žåã¯ãå¶åŸ¡çšåç»ã®èšå®ãå¿
èŠã§ãã[ããŒã¿ã»ããèšå®](./dataset_config.md#sample-for-video-dataset-with-control-images)ãåç
§ããŠãã ããã
+
+
+
+### Text Encoder Output Pre-caching
+
+Text encoder output pre-caching is also almost the same as in HunyuanVideo. Create the cache using the following command:
+
+```bash
+python src/musubi_tuner/wan_cache_text_encoder_outputs.py --dataset_config path/to/toml --t5 path/to/models_t5_umt5-xxl-enc-bf16.pth --batch_size 16
+```
+
+Adjust `--batch_size` according to your available VRAM.
+
+For systems with limited VRAM (less than ~16GB), use `--fp8_t5` to run the T5 in fp8 mode.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒãåºåã®äºåãã£ãã·ã³ã°ãHunyuanVideoãšã»ãŒåãã§ããäžã®ã³ãã³ãäŸã䜿çšããŠãã£ãã·ã¥ãäœæããŠãã ããã
+
+䜿çšå¯èœãªVRAMã«åãã㊠`--batch_size` ã調æŽããŠãã ããã
+
+VRAMãéãããŠããã·ã¹ãã ïŒçŽ16GBæªæºïŒã®å Žåã¯ãT5ãfp8ã¢ãŒãã§å®è¡ããããã« `--fp8_t5` ã䜿çšããŠãã ããã
+
+
+
+## Training / åŠç¿
+
+### Training
+
+Start training using the following command (input as a single line):
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/wan_train_network.py \
+ --task t2v-1.3B \
+ --dit path/to/wan2.1_xxx_bf16.safetensors \
+ --dataset_config path/to/toml --sdpa --mixed_precision bf16 --fp8_base \
+ --optimizer_type adamw8bit --learning_rate 2e-4 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_wan --network_dim 32 \
+ --timestep_sampling shift --discrete_flow_shift 3.0 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+The above is an example. The appropriate values for `timestep_sampling` and `discrete_flow_shift` need to be determined by experimentation.
+
+For additional options, use `python src/musubi_tuner/wan_train_network.py --help` (note that many options are unverified).
+
+`--task` is one of `t2v-1.3B`, `t2v-14B`, `i2v-14B`, `t2i-14B` (for Wan2.1 official models), `t2v-1.3B-FC`, `t2v-14B-FC`, and `i2v-14B-FC` (for Wan2.1 Fun Control model), `t2v-A14B`, `i2v-A14B` (for Wan2.2 14B models). Specify the DiT weights for the task with `--dit`.
+
+You can limit the range of timesteps for training with `--min_timestep` and `--max_timestep`. The values are specified in the range of 0 to 1000 (not 0.0 to 1.0). See [here](./advanced_config.md#specify-time-step-range-for-training--åŠç¿æã®ã¿ã€ã ã¹ãããç¯å²ã®æå®) for details.
+
+For Wan2.2 models, if you want to train with either the high-noise model or the low-noise model, specify the model with `--dit` as in Wan2.1. In this case, it is recommended to specify the range of timesteps described in the table below, and `--preserve_distribution_shape` to maintain the distribution shape.
+
+If you want to train LoRA for both models simultaneously, you need to specify the low-noise model with `--dit` and the high-noise model with `--dit_high_noise`. The two models are switched at the timestep specified by `--timestep_boundary`. The default value is 0.9 for I2V and 0.875 for T2V. `--timestep_boundary` can be specified in the range of 0.0 to 1.0, or in the range of 0 to 1000.
+
+When training Wan2.2 high and low models, you can use `--offload_inactive_dit` to offload the inactive DiT model to the CPU, which can save VRAM (only works when `--blocks_to_swap` is not specified). Please note that in Windows environment, this offloading uses shared VRAM. Even with fp8/fp8_scaled, about 42GB of shared VRAM is required for the two models combined, which means that about 96GB or more of main RAM is required. If you have less main RAM, using `--blocks_to_swap` will use less main RAM.
+
+`--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+
+For Wan2.2 models, `--discrete_flow_shift` may need to be adjusted based on I2V and T2V. According to the official implementation, the shift values in inference are 12.0 for T2V and 5.0 for I2V. The shift values during training do not necessarily have to match those during inference, but they may serve as a useful reference.
+
+`--force_v2_1_time_embedding` uses the same shape of time embedding as Wan2.1. This can reduce VRAM usage during inference and training (the larger the resolution and number of frames, the greater the reduction). Although this is different from the official implementation of Wan2.2, it seems that there is no effect on inference or training within the range that has been confirmed.
+
+Don't forget to specify `--network_module networks.lora_wan`.
+
+Other options are mostly the same as `hv_train_network.py`. See [HunyuanVideo documentation](./hunyuan_video.md#training--åŠç¿) and `--help` for details.
+
+The trained LoRA weights are seemed to be compatible with ComfyUI (may depend on the nodes used).
+
+#### Recommended Min/Max Timestep Settings for Wan2.2
+
+| Model | Min Timestep | Max Timestep |
+|-------|--------------|--------------|
+| I2V low noise | 0 | 900 |
+| I2V high noise | 900 | 1000 |
+| T2V low noise | 0 | 875 |
+| T2V high noise | 875 | 1000 |
+
+
+æ¥æ¬èª
+
+ãµã³ãã«ã¯è±èªçãåç
§ããŠãã ããã
+
+`timestep_sampling`ã`discrete_flow_shift`ã¯äžäŸã§ããã©ã®ãããªå€ãé©åãã¯å®éšãå¿
èŠã§ãã
+
+ãã®ä»ã®ãªãã·ã§ã³ã«ã€ããŠã¯ `python src/musubi_tuner/wan_train_network.py --help` ã䜿çšããŠãã ããïŒå€ãã®ãªãã·ã§ã³ã¯æªæ€èšŒã§ãïŒã
+
+`--task` ã«ã¯ `t2v-1.3B`, `t2v-14B`, `i2v-14B`, `t2i-14B` ïŒãããã¯Wan2.1å
¬åŒã¢ãã«ïŒã`t2v-1.3B-FC`, `t2v-14B-FC`, `i2v-14B-FC`ïŒWan2.1-Fun Controlã¢ãã«ïŒã`t2v-A14B`, `i2v-A14B`ïŒWan2.2 14Bã¢ãã«ïŒãæå®ããŸãã`--dit`ã«ãtaskã«å¿ããDiTã®éã¿ãæå®ããŠãã ããã
+
+`--min_timestep`ãš`--max_timestep`ã§åŠç¿ããã¿ã€ã ã¹ãããã®ç¯å²ãéå®ã§ããŸããå€ã¯0ãã1000ã®ç¯å²ã§æå®ããŸãã詳现ã¯[ãã¡ã](./advanced_config.md#specify-time-step-range-for-training--åŠç¿æã®ã¿ã€ã ã¹ãããç¯å²ã®æå®)ãåç
§ããŠãã ããã
+
+Wan2.2ã¢ãã«ã®å Žåãé«ãã€ãºçšã¢ãã«ãŸãã¯äœãã€ãºçšã¢ãã«ã®ã©ã¡ããã§åŠç¿ããå Žåã¯ãWan2.1ã®å Žåãšåæ§ã«ã`--dit`ã«ãã®ã¢ãã«ãæå®ããŠãã ããããŸããã®å Žåãè±èªçãµã³ãã«å
ã®è¡šã«ç€ºãããã«ã¿ã€ã ã¹ãããã®ç¯å²ãæå®ãã`--preserve_distribution_shape` ãæå®ããŠååžåœ¢ç¶ãç¶æããããšããå§ãããŸãã
+
+äž¡æ¹ã®ã¢ãã«ãžã®LoRAãåŠç¿ããå Žåã¯ã`--dit`ã«äœãã€ãºçšã¢ãã«ãã`--dit_high_noise`ã«é«ãã€ãºçšã¢ãã«ãæå®ããŸãã2ã€ã®ã¢ãã«ã¯`--timestep_boundary`ã§æå®ãããã¿ã€ã ã¹ãããã§åãæ¿ãããŸããããã©ã«ãã¯I2Vã®å Žåã¯0.9ãT2Vã®å Žåã¯0.875ã§ãã`--timestep_boundary`ã¯0.0ãã1.0ã®ç¯å²ã®å€ããŸãã¯0ãã1000ã®ç¯å²ã®å€ã§æå®ã§ããŸãã
+
+ãŸãWan2.2ã¢ãã«ã§äž¡æ¹ã®ã¢ãã«ãåŠç¿ãããšãã`--offload_inactive_dit`ã䜿çšãããšã䜿çšããŠããªãDiTã¢ãã«ãCPUã«ãªãããŒãããããšãã§ããVRAMãç¯çŽã§ããŸãïŒ`--blocks_to_swap`æªæå®æã®ã¿æå¹ïŒããªããWindowsç°å¢ã®å Žåããã®ãªãããŒãã«ã¯å
±æVRAMã䜿çšãããŸããfp8/fp8_scaledã®å Žåã§ã2ã€ã®ã¢ãã«åèšã§çŽ42GBã®å
±æVRAMãå¿
èŠãšãªããã€ãŸãã¡ã€ã³RAMã96GBçšåºŠä»¥äžå¿
èŠã«ãªããŸãã®ã§ã泚æãã ãããã¡ã€ã³RAMãå°ãªãå Žåã`--blocks_to_swap`ã䜿çšããæ¹ãã¡ã€ã³RAMã®äœ¿çšéã¯å°ãªããªããŸãã
+
+Wan2.2ã®å ŽåãI2VãšT2Vã§`--discrete_flow_shift`ã調æŽããå¿
èŠããããããããŸãããå
¬åŒå®è£
ã«ãããšãæšè«æã®ã·ããå€ã¯T2Vã§12.0ãI2Vã§5.0ã§ããåŠç¿æã®ã·ããå€ã¯æšè«æåºŠå¿
ãããåãããå¿
èŠã¯ãããŸããããåèã«ãªããããããŸããã
+
+`--force_v2_1_time_embedding` ãæå®ãããšãWan2.1ãšåã圢ç¶ã®æéåã蟌ã¿ã䜿çšããŸããããã«ããæšè«äžãåŠç¿äžã®VRAM䜿çšéãåæžã§ããŸãïŒè§£å床ããã¬ãŒã æ°ã倧ããã»ã©åæžéã倧ãããªããŸãïŒãWan2.2ã®å
¬åŒå®è£
ãšã¯ç°ãªããŸããã確èªããç¯å²ã§ã¯æšè«ãåŠç¿å
±ã«åœ±é¿ã¯ãªãããã§ãã
+
+`--network_module` ã« `networks.lora_wan` ãæå®ããããšãå¿ããªãã§ãã ããã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯ãã»ãŒ`hv_train_network.py`ãšåæ§ã§ãã[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md#training--åŠç¿)ããã³`--help`ãåç
§ããŠãã ããã
+
+åŠç¿åŸã®LoRAã®éã¿ã¯ãã®ãŸãŸComfyUIã§äœ¿çšã§ããããã§ãïŒçšããããŒãã«ããããŸãïŒã
+
+
+
+### Command line options for training with sampling / ãµã³ãã«ç»åçæã«é¢é£ããåŠç¿æã®ã³ãã³ãã©ã€ã³ãªãã·ã§ã³
+
+Example of command line options for training with sampling / èšè¿°äŸ:
+
+```bash
+--vae path/to/wan_vae.safetensors \
+--t5 path/to/models_t5_umt5-xxl-enc-bf16.pth \
+--sample_prompts /path/to/prompt_file.txt \
+--sample_every_n_epochs 1 --sample_every_n_steps 1000 --sample_at_first
+```
+Each option is the same as when generating images or as HunyuanVideo. Please refer to [here](/docs/sampling_during_training.md) for details.
+
+If you train I2V models for Wan2.1, add `--clip path/to/models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth` to specify the CLIP model. For Wan2.2, CLIP model is not required.
+
+You can specify the initial image, the negative prompt and the control video (for Wan2.1-Fun-Control) in the prompt file. Please refer to [here](/docs/sampling_during_training.md#prompt-file--ããã³ãããã¡ã€ã«).
+
+
+æ¥æ¬èª
+
+åãªãã·ã§ã³ã¯æšè«æãããã³HunyuanVideoã®å Žåãšåæ§ã§ãã[ãã¡ã](/docs/sampling_during_training.md)ãåç
§ããŠãã ããã
+
+Wan2.1ã®I2Vã¢ãã«ãåŠç¿ããå Žåã¯ã`--clip path/to/models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth` ã远å ããŠCLIPã¢ãã«ãæå®ããŠãã ãããWan2.2ã§ã¯CLIPã¢ãã«ã¯äžèŠã§ãã
+
+ããã³ãããã¡ã€ã«ã§ãåæç»åããã¬ãã£ãããã³ãããå¶åŸ¡åç»ïŒWan2.1-Fun-ControlçšïŒçãæå®ã§ããŸãã[ãã¡ã](/docs/sampling_during_training.md#prompt-file--ããã³ãããã¡ã€ã«)ãåç
§ããŠãã ããã
+
+
+
+
+## Inference / æšè«
+
+### Inference Options Comparison / æšè«ãªãã·ã§ã³æ¯èŒ
+
+#### Speed Comparison (Faster â Slower) / é床æ¯èŒïŒéãâé
ãïŒ
+*Note: Results may vary depending on GPU type*
+
+fp8_fast > bf16/fp16 (no block swap) > fp8 > fp8_scaled > bf16/fp16 (block swap)
+
+#### Quality Comparison (Higher â Lower) / å質æ¯èŒïŒé«âäœïŒ
+
+bf16/fp16 > fp8_scaled > fp8 >> fp8_fast
+
+### T2V Inference / T2Væšè«
+
+The following is an example of T2V inference (input as a single line):
+
+```bash
+python src/musubi_tuner/wan_generate_video.py --fp8 --task t2v-1.3B --video_size 832 480 --video_length 81 --infer_steps 20 \
+--prompt "prompt for the video" --save_path path/to/save.mp4 --output_type both \
+--dit path/to/wan2.1_t2v_1.3B_bf16_etc.safetensors --vae path/to/wan_2.1_vae.safetensors \
+--t5 path/to/models_t5_umt5-xxl-enc-bf16.pth \
+--attn_mode torch
+```
+
+`--task` is one of `t2v-1.3B`, `t2v-14B`, `i2v-14B`, `t2i-14B` (these are Wan2.1 official models), `t2v-1.3B-FC`, `t2v-14B-FC` and `i2v-14B-FC` (for Wan2.1-Fun Control model), `t2v-A14B`, `i2v-A14B` (for Wan2.2 14B models).
+
+For Wan2.2 models, you can specify the low-noise model with `--dit` and the high-noise model with `--dit_high_noise`. The two models are switched at the timestep specified by `--timestep_boundary`. The default is described above. If you omit the high-noise model, the low-noise model will be used for all timesteps.
+
+When inferring Wan2 .2 high and low models, you can use `--offload_inactive_dit` to offload the inactive DiT model to the CPU, or `--lazy_loading` to enable lazy loading for DiT models, which can save VRAM. `--offload_inactive_dit` only works when `--blocks_to_swap` is not specified, so use `--lazy_loading` instead. Without these options, both models will remain on the GPU, which may use more VRAM.
+
+`--attn_mode` is `torch`, `sdpa` (same as `torch`), `xformers`, `sageattn`,`flash2`, `flash` (same as `flash2`) or `flash3`. `torch` is the default. Other options require the corresponding library to be installed. `flash3` (Flash attention 3) is not tested.
+
+Specifying `--fp8` runs DiT in fp8 mode. fp8 can significantly reduce memory consumption but may impact output quality.
+
+`--fp8_scaled` can be specified in addition to `--fp8` to run the model in fp8 weights optimization. This increases memory consumption and speed slightly but improves output quality. See [here](advanced_config.md#fp8-weight-optimization-for-models--ã¢ãã«ã®éã¿ã®fp8ãžã®æé©å) for details.
+
+`--fp8_fast` option is also available for faster inference on RTX 40x0 GPUs. This option requires `--fp8_scaled` option. **This option seems to degrade the output quality.**
+
+`--fp8_t5` can be used to specify the T5 model in fp8 format. This option reduces memory usage for the T5 model.
+
+`--negative_prompt` can be used to specify a negative prompt. If omitted, the default negative prompt is used.
+
+`--flow_shift` can be used to specify the flow shift (default 3.0 for I2V with 480p, 5.0 for others).
+
+`--guidance_scale` can be used to specify the guidance scale for classifier free guidance (default 5.0). For Wan2.2, `--guidance_scale_high_noise` also can be specified to set a different scale for the high-noise model.
+
+`--blocks_to_swap` is the number of blocks to swap during inference. The default value is None (no block swap). The maximum value is 39 for 14B model and 29 for 1.3B model.
+
+`--force_v2_1_time_embedding` uses the same shape of time embedding as Wan2.1 for Wan2.2. See the training section for details.
+
+`--vae_cache_cpu` enables VAE cache in main memory. This reduces VRAM usage slightly but processing is slower.
+
+`--compile` enables torch.compile. See [here](/README.md#inference) for details.
+
+`--trim_tail_frames` can be used to trim the tail frames when saving. The default is 0.
+
+`--cfg_skip_mode` specifies the mode for skipping CFG in different steps. The default is `none` (all steps).`--cfg_apply_ratio` specifies the ratio of steps where CFG is applied. See below for details.
+
+`--include_patterns` and `--exclude_patterns` can be used to specify which LoRA modules to apply or exclude during training. If not specified, all modules are applied by default. These options accept regular expressions.
+
+`--include_patterns` specifies the modules to be applied, and `--exclude_patterns` specifies the modules to be excluded. The regular expression is matched against the LoRA key name, and include takes precedence.
+
+The key name to be searched is in sd-scripts format (`lora_unet_`). For example, `lora_unet_blocks_9_cross_attn_k`.
+
+For example, if you specify `--exclude_patterns "blocks_[23]\d_"` , it will exclude modules containing `blocks_20` to `blocks_39`. If you specify `--include_patterns "cross_attn" --exclude_patterns "blocks_(0|1|2|3|4)_"`, it will apply LoRA to modules containing `cross_attn` and not containing `blocks_0` to `blocks_4`.
+
+If you specify multiple LoRA weights, please specify them with multiple arguments. For example: `--include_patterns "cross_attn" ".*" --exclude_patterns "dummy_do_not_exclude" "blocks_(0|1|2|3|4)"`. `".*"` is a regex that matches everything. `dummy_do_not_exclude` is a dummy regex that does not match anything.
+
+`--cpu_noise` generates initial noise on the CPU. This may result in the same results as ComfyUI with the same seed (depending on other settings).
+
+If you are using the Fun Control model, specify the control video with `--control_path`. You can specify a video file or a folder containing multiple image files. The number of frames in the video file (or the number of images) should be at least the number specified in `--video_length` (plus 1 frame if you specify `--end_image_path`).
+
+Please try to match the aspect ratio of the control video with the aspect ratio specified in `--video_size` (there may be some deviation from the initial image of I2V due to the use of bucketing processing).
+
+Other options are same as `hv_generate_video.py` (some options are not supported, please check the help).
+
+
+æ¥æ¬èª
+
+`--task` ã«ã¯ `t2v-1.3B`, `t2v-14B`, `i2v-14B`, `t2i-14B` ïŒãããã¯Wan2.1å
¬åŒã¢ãã«ïŒã`t2v-1.3B-FC`, `t2v-14B-FC`, `i2v-14B-FC`ïŒWan2.1-Fun Controlã¢ãã«ïŒã`t2v-A14B`, `i2v-A14B`ïŒWan2.2 14Bã¢ãã«ïŒãæå®ããŸãã
+
+Wan2.2ã¢ãã«ã®å Žåã`--dit`ã«äœãã€ãºçšã¢ãã«ãã`--dit_high_noise`ã«é«ãã€ãºçšã¢ãã«ãæå®ããŸãã2ã€ã®ã¢ãã«ã¯`--timestep_boundary`ã§æå®ãããã¿ã€ã ã¹ãããã§åãæ¿ãããŸããé«ãã€ãºçšã¢ãã«ãçç¥ããå Žåã¯ãäœãã€ãºçšã¢ãã«ãå
šãŠã®ã¿ã€ã ã¹ãããã§äœ¿çšãããŸãã
+
+ãŸãWan2.2ã¢ãã«ã§äž¡æ¹ã®ã¢ãã«ãçšããŠæšè«ãããšãã`--offload_inactive_dit`ã䜿çšãããšã䜿çšããŠããªãDiTã¢ãã«ãCPUã«ãªãããŒãããããšãã§ããŸãããŸã`--lazy_loading`ã䜿çšãããšãDiTã¢ãã«ã®é
å»¶èªã¿èŸŒã¿ãæå¹ããŸãããããã®ãªãã·ã§ã³ã«ããVRAMãç¯çŽã§ããŸãã`--offload_inactive_dit`ã¯`--blocks_to_swap`ãæå®ãããŠããªãå Žåã«ã®ã¿å©çšã§ããŸãã`--block_to_swap`ã䜿ããšãã«ã¯`--lazy_loading`ã䜿çšããŠãã ããããããã®ãªãã·ã§ã³ãæå®ããªããšäž¡æ¹ã®ã¢ãã«ãGPUã«çœ®ãããŸãã®ã§ãVRAMãå€ã䜿çšããŸãã
+
+`--attn_mode` ã«ã¯ `torch`, `sdpa`ïŒ`torch`ãšåãïŒã`xformers`, `sageattn`, `flash2`, `flash`ïŒ`flash2`ãšåãïŒ, `flash3` ã®ãããããæå®ããŸããããã©ã«ã㯠`torch` ã§ãããã®ä»ã®ãªãã·ã§ã³ã䜿çšããå Žåã¯ã察å¿ããã©ã€ãã©ãªãã€ã³ã¹ããŒã«ããå¿
èŠããããŸãã`flash3`ïŒFlash attention 3ïŒã¯æªãã¹ãã§ãã
+
+`--fp8` ãæå®ãããšDiTã¢ãã«ãfp8圢åŒã§å®è¡ããŸããfp8ã¯ã¡ã¢ãªæ¶è²»ã倧å¹
ã«åæžã§ããŸãããåºåå質ã«åœ±é¿ãäžããå¯èœæ§ããããŸãã
+
+`--fp8_scaled` ã `--fp8` ãšäœµçšãããšãfp8ãžã®éã¿éååãè¡ããŸããã¡ã¢ãªæ¶è²»ãšé床ã¯ãããã«æªåããŸãããåºåå質ãåäžããŸãã詳ããã¯[ãã¡ã](advanced_config.md#fp8-weight-optimization-for-models--ã¢ãã«ã®éã¿ã®fp8ãžã®æé©å)ãåç
§ããŠãã ããã
+
+`--fp8_fast` ãªãã·ã§ã³ã¯RTX 40x0 GPUã§ã®é«éæšè«ã«äœ¿çšããããªãã·ã§ã³ã§ãããã®ãªãã·ã§ã³ã¯ `--fp8_scaled` ãªãã·ã§ã³ãå¿
èŠã§ãã**åºåå質ãå£åããããã§ãã**
+
+`--fp8_t5` ãæå®ãããšT5ã¢ãã«ãfp8圢åŒã§å®è¡ããŸããT5ã¢ãã«åŒã³åºãæã®ã¡ã¢ãªäœ¿çšéãåæžããŸãã
+
+`--negative_prompt` ã§ãã¬ãã£ãããã³ãããæå®ã§ããŸããçç¥ããå Žåã¯ããã©ã«ãã®ãã¬ãã£ãããã³ããã䜿çšãããŸãã
+
+`--flow_shift` ã§flow shiftãæå®ã§ããŸãïŒ480pã®I2Vã®å Žåã¯ããã©ã«ã3.0ããã以å€ã¯5.0ïŒã
+
+`--guidance_scale` ã§classifier free guianceã®ã¬ã€ãã³ã¹ã¹ã±ãŒã«ãæå®ã§ããŸãïŒããã©ã«ã5.0ïŒãWan2.2ã®å Žåã¯ã`--guidance_scale_high_noise` ã§é«ãã€ãºçšã¢ãã«ã®ã¬ã€ãã³ã¹ã¹ã±ãŒã«ãå¥ã«æå®ã§ããŸãã
+
+`--blocks_to_swap` ã¯æšè«æã®block swapã®æ°ã§ããããã©ã«ãå€ã¯NoneïŒblock swapãªãïŒã§ããæå€§å€ã¯14Bã¢ãã«ã®å Žå39ã1.3Bã¢ãã«ã®å Žå29ã§ãã
+
+`--force_v2_1_time_embedding` ã¯Wan2.2ã®å Žåã«æå¹ã§ãWan2.1ãšåã圢ç¶ã®æéåã蟌ã¿ã䜿çšããŸãã詳现ã¯åŠç¿ã»ã¯ã·ã§ã³ãåç
§ããŠãã ããã
+
+`--vae_cache_cpu` ãæå¹ã«ãããšãVAEã®ãã£ãã·ã¥ãã¡ã€ã³ã¡ã¢ãªã«ä¿æããŸããVRAM䜿çšéãå€å°æžããŸãããåŠçã¯é
ããªããŸãã
+
+`--compile`ã§torch.compileãæå¹ã«ããŸãã詳现ã«ã€ããŠã¯[ãã¡ã](/README.md#inference)ãåç
§ããŠãã ããã
+
+`--trim_tail_frames` ã§ä¿åæã«æ«å°Ÿã®ãã¬ãŒã ãããªãã³ã°ã§ããŸããããã©ã«ãã¯0ã§ãã
+
+`--cfg_skip_mode` ã¯ç°ãªãã¹ãããã§CFGãã¹ãããããã¢ãŒããæå®ããŸããããã©ã«ã㯠`none`ïŒå
šã¹ãããïŒã`--cfg_apply_ratio` ã¯CFGãé©çšãããã¹ãããã®å²åãæå®ããŸãã詳现ã¯åŸè¿°ããŸãã
+
+LoRAã®ã©ã®ã¢ãžã¥ãŒã«ãé©çšããããã`--include_patterns`ãš`--exclude_patterns`ã§æå®ã§ããŸãïŒæªæå®æã»ããã©ã«ãã¯å
šã¢ãžã¥ãŒã«é©çšãããŸã
+ïŒããããã®ãªãã·ã§ã³ã«ã¯ãæ£èŠè¡šçŸãæå®ããŸãã`--include_patterns`ã¯é©çšããã¢ãžã¥ãŒã«ã`--exclude_patterns`ã¯é©çšããªãã¢ãžã¥ãŒã«ãæå®ããŸããæ£èŠè¡šçŸãLoRAã®ããŒåã«å«ãŸãããã©ããã§å€æãããincludeãåªå
ãããŸãã
+
+æ€çŽ¢å¯Ÿè±¡ãšãªãããŒå㯠sd-scripts 圢åŒïŒ`lora_unet_<ã¢ãžã¥ãŒã«åã®ãããã_ã«çœ®æãããã®>`ïŒã§ããäŸïŒ`lora_unet_blocks_9_cross_attn_k`
+
+ããšãã° `--exclude_patterns "blocks_[23]\d_"`ã®ã¿ãæå®ãããšã`blocks_20`ãã`blocks_39`ãå«ãã¢ãžã¥ãŒã«ãé€å€ãããŸãã`--include_patterns "cross_attn" --exclude_patterns "blocks_(0|1|2|3|4)_"`ã®ããã«includeãšexcludeãæå®ãããšã`cross_attn`ãå«ãã¢ãžã¥ãŒã«ã§ããã€`blocks_0`ãã`blocks_4`ãå«ãŸãªãã¢ãžã¥ãŒã«ã«LoRAãé©çšãããŸãã
+
+è€æ°ã®LoRAã®éã¿ãæå®ããå Žåã¯ãè€æ°åã®åŒæ°ã§æå®ããŠãã ãããäŸïŒ`--include_patterns "cross_attn" ".*" --exclude_patterns "dummy_do_not_exclude" "blocks_(0|1|2|3|4)"` `".*"`ã¯å
šãŠã«ãããããæ£èŠè¡šçŸã§ãã`dummy_do_not_exclude`ã¯äœã«ããããããªããããŒã®æ£èŠè¡šçŸã§ãã
+
+`--cpu_noise`ãæå®ãããšåæãã€ãºãCPUã§çæããŸããããã«ããåäžseedæã®çµæãComfyUIãšåãã«ãªãå¯èœæ§ããããŸãïŒä»ã®èšå®ã«ããããŸãïŒã
+
+Fun Controlã¢ãã«ã䜿çšããå Žåã¯ã`--control_path`ã§å¶åŸ¡çšã®æ åãæå®ããŸããåç»ãã¡ã€ã«ããŸãã¯è€æ°æã®ç»åãã¡ã€ã«ãå«ãã ãã©ã«ããæå®ã§ããŸããåç»ãã¡ã€ã«ã®ãã¬ãŒã æ°ïŒãŸãã¯ç»åã®ææ°ïŒã¯ã`--video_length`ã§æå®ãããã¬ãŒã æ°ä»¥äžã«ããŠãã ããïŒåŸè¿°ã®`--end_image_path`ãæå®ããå Žåã¯ãããã«+1ãã¬ãŒã ïŒã
+
+å¶åŸ¡çšã®æ åã®ã¢ã¹ãã¯ãæ¯ã¯ã`--video_size`ã§æå®ããã¢ã¹ãã¯ãæ¯ãšã§ãããããåãããŠãã ããïŒbucketingã®åŠçãæµçšããŠããããI2Vã®åæç»åãšãºã¬ãå ŽåããããŸãïŒã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯ `hv_generate_video.py` ãšåãã§ãïŒäžéšã®ãªãã·ã§ã³ã¯ãµããŒããããŠããªãããããã«ãã確èªããŠãã ããïŒã
+
+
+
+#### CFG Skip Mode / CFGã¹ãããã¢ãŒã
+
+ These options allow you to balance generation speed against prompt accuracy. More skipped steps results in faster generation with potential quality degradation.
+
+Setting `--cfg_apply_ratio` to 0.5 speeds up the denoising loop by up to 25%.
+
+`--cfg_skip_mode` specified one of the following modes:
+
+- `early`: Skips CFG in early steps for faster generation, applying guidance mainly in later refinement steps
+- `late`: Skips CFG in later steps, applying guidance during initial structure formation
+- `middle`: Skips CFG in middle steps, applying guidance in both early and later steps
+- `early_late`: Skips CFG in both early and late steps, applying only in middle steps
+- `alternate`: Applies CFG in alternate steps based on the specified ratio
+- `none`: Applies CFG at all steps (default)
+
+`--cfg_apply_ratio` specifies a value from 0.0 to 1.0 controlling the proportion of steps where CFG is applied. For example, setting 0.5 means CFG will be applied in only 50% of the steps.
+
+If num_steps is 10, the following table shows the steps where CFG is applied based on the `--cfg_skip_mode` option (A means CFG is applied, S means it is skipped, `--cfg_apply_ratio` is 0.6):
+
+| skip mode | CFG apply pattern |
+|---|---|
+| early | SSSSAAAAAA |
+| late | AAAAAASSSS |
+| middle | AAASSSSAAA |
+| early_late | SSAAAAAASS |
+| alternate | SASASAASAS |
+
+The appropriate settings are unknown, but you may want to try `late` or `early_late` mode with a ratio of around 0.3 to 0.5.
+
+æ¥æ¬èª
+ãããã®ãªãã·ã§ã³ã¯ãçæé床ãšããã³ããã®ç²ŸåºŠã®ãã©ã³ã¹ãåãããšãã§ããŸããã¹ããããããã¹ããããå€ãã»ã©ãçæé床ãéããªããŸãããå質ãäœäžããå¯èœæ§ããããŸãã
+
+ratioã«0.5ãæå®ããããšã§ãããã€ãžã³ã°ã®ã«ãŒããæå€§25%çšåºŠãé«éåãããŸãã
+
+`--cfg_skip_mode` ã¯æ¬¡ã®ã¢ãŒãã®ãããããæå®ããŸãïŒ
+
+- `early`ïŒåæã®ã¹ãããã§CFGãã¹ãããããŠãäž»ã«çµç€ã®ç²Ÿçްåã®ã¹ãããã§é©çšããŸã
+- `late`ïŒçµç€ã®ã¹ãããã§CFGãã¹ãããããåæã®æ§é ãæ±ºãŸã段éã§é©çšããŸã
+- `middle`ïŒäžéã®ã¹ãããã§CFGãã¹ãããããåæãšçµç€ã®ã¹ãããã®äž¡æ¹ã§é©çšããŸã
+- `early_late`ïŒåæãšçµç€ã®ã¹ãããã®äž¡æ¹ã§CFGãã¹ãããããäžéã®ã¹ãããã®ã¿é©çšããŸã
+- `alternate`ïŒæå®ãããå²åã«åºã¥ããŠCFGãé©çšããŸã
+
+`--cfg_apply_ratio` ã¯ãCFGãé©çšãããã¹ãããã®å²åã0.0ãã1.0ã®å€ã§æå®ããŸããããšãã°ã0.5ã«èšå®ãããšãCFGã¯ã¹ãããã®50%ã®ã¿ã§é©çšãããŸãã
+
+å
·äœçãªãã¿ãŒã³ã¯äžã®ããŒãã«ãåç
§ããŠãã ããã
+
+é©åãªèšå®ã¯äžæã§ãããã¢ãŒãã¯`late`ãŸãã¯`early_late`ãratioã¯0.3~0.5çšåºŠãã詊ããŠã¿ããšè¯ããããããŸããã
+
+
+#### Skip Layer Guidance
+
+Skip Layer Guidance is a feature that uses the output of a model with some blocks skipped as the unconditional output of classifier free guidance. It was originally proposed in [SD 3.5](https://github.com/comfyanonymous/ComfyUI/pull/5404) and first applied in Wan2GP in [this PR](https://github.com/deepbeepmeep/Wan2GP/pull/61). It may improve the quality of generated videos.
+
+The implementation of SD 3.5 is [here](https://github.com/Stability-AI/sd3.5/blob/main/sd3_impls.py), and the implementation of Wan2GP (the PR mentioned above) has some different specifications. This inference script allows you to choose between the two methods.
+
+*The SD3.5 method applies slg output in addition to cond and uncond (slows down the speed). The Wan2GP method uses only cond and slg output.*
+
+The following arguments are available:
+
+- `--slg_mode`: Specifies the SLG mode. `original` for SD 3.5 method, `uncond` for Wan2GP method. Default is None (no SLG).
+- `--slg_layers`: Specifies the indices of the blocks (layers) to skip in SLG, separated by commas. Example: `--slg_layers 4,5,6`. Default is empty (no skip). If this option is not specified, `--slg_mode` is ignored.
+- `--slg_scale`: Specifies the scale of SLG when `original`. Default is 3.0.
+- `--slg_start`: Specifies the start step of SLG application in inference steps from 0.0 to 1.0. Default is 0.0 (applied from the beginning).
+- `--slg_end`: Specifies the end step of SLG application in inference steps from 0.0 to 1.0. Default is 0.3 (applied up to 30% from the beginning).
+
+Appropriate settings are unknown, but you may want to try `original` mode with a scale of around 3.0 and a start ratio of 0.0 and an end ratio of 0.5, with layers 4, 5, and 6 skipped.
+
+
+æ¥æ¬èª
+Skip Layer Guidanceã¯ãäžéšã®blockãã¹ãããããã¢ãã«åºåãclassifier free guidanceã®unconditionalåºåã«äœ¿çšããæ©èœã§ããå
ã
ã¯[SD 3.5](https://github.com/comfyanonymous/ComfyUI/pull/5404)ã§ææ¡ããããã®ã§ãWan2.1ã«ã¯[Wan2GPã®ãã¡ãã®PR](https://github.com/deepbeepmeep/Wan2GP/pull/61)ã§åããŠé©çšãããŸãããçæåç»ã®å質ãåäžããå¯èœæ§ããããŸãã
+
+SD 3.5ã®å®è£
ã¯[ãã¡ã](https://github.com/Stability-AI/sd3.5/blob/main/sd3_impls.py)ã§ãWan2GPã®å®è£
ïŒåè¿°ã®PRïŒã¯äžéšä»æ§ãç°ãªããŸãããã®æšè«ã¹ã¯ãªããã§ã¯äž¡è
ã®æ¹åŒãéžæã§ããããã«ãªã£ãŠããŸãã
+
+â»SD3.5æ¹åŒã¯condãšuncondã«å ããŠslg outputãé©çšããŸãïŒé床ãäœäžããŸãïŒãWan2GPæ¹åŒã¯condãšslg outputã®ã¿ã䜿çšããŸãã
+
+以äžã®åŒæ°ããããŸãã
+
+- `--slg_mode`ïŒSLGã®ã¢ãŒããæå®ããŸãã`original`ã§SD 3.5ã®æ¹åŒã`uncond`ã§Wan2GPã®æ¹åŒã§ããããã©ã«ãã¯Noneã§ãSLGã䜿çšããŸããã
+- `--slg_layers`ïŒSLGã§ã¹ãããããblock (layer)ã®ã€ã³ãã¯ã¹ãã«ã³ãåºåãã§æå®ããŸããäŸïŒ`--slg_layers 4,5,6`ãããã©ã«ãã¯ç©ºïŒã¹ãããããªãïŒã§ãããã®ãªãã·ã§ã³ãæå®ããªããš`--slg_mode`ã¯ç¡èŠãããŸãã
+- `--slg_scale`ïŒ`original`ã®ãšãã®SLGã®ã¹ã±ãŒã«ãæå®ããŸããããã©ã«ãã¯3.0ã§ãã
+- `--slg_start`ïŒæšè«ã¹ãããã®SLGé©çšéå§ã¹ãããã0.0ãã1.0ã®å²åã§æå®ããŸããããã©ã«ãã¯0.0ã§ãïŒæåããé©çšïŒã
+- `--slg_end`ïŒæšè«ã¹ãããã®SLGé©çšçµäºã¹ãããã0.0ãã1.0ã®å²åã§æå®ããŸããããã©ã«ãã¯0.3ã§ãïŒæåãã30%ãŸã§é©çšïŒã
+
+é©åãªèšå®ã¯äžæã§ããã`original`ã¢ãŒãã§ã¹ã±ãŒã«ã3.0çšåºŠãéå§å²åã0.0ãçµäºå²åã0.5çšåºŠã«èšå®ãã4, 5, 6ã®layerãã¹ãããããèšå®ããå§ãããšè¯ããããããŸããã
+
+
+### I2V Inference / I2Væšè«
+
+The following is an example of I2V inference (input as a single line):
+
+```bash
+python src/musubi_tuner/wan_generate_video.py --fp8 --task i2v-14B --video_size 832 480 --video_length 81 --infer_steps 20 \
+--prompt "prompt for the video" --save_path path/to/save.mp4 --output_type both \
+--dit path/to/wan2.1_i2v_480p_14B_bf16_etc.safetensors --vae path/to/wan_2.1_vae.safetensors \
+--t5 path/to/models_t5_umt5-xxl-enc-bf16.pth --clip path/to/models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth \
+--attn_mode torch --image_path path/to/image.jpg
+```
+
+For Wan2.1, add `--clip` to specify the CLIP model. For Wan2.2, CLIP model is not required. `--image_path` is the path to the image to be used as the initial frame.
+
+`--end_image_path` can be used to specify the end image. This option is experimental. When this option is specified, the saved video will be slightly longer than the specified number of frames and will have noise, so it is recommended to specify `--trim_tail_frames 3` to trim the tail frames.
+
+You can also use the Fun Control model for I2V inference. Specify the control video with `--control_path`.
+
+Other options are same as T2V inference.
+
+
+æ¥æ¬èª
+Wan2.1ã®å Žåã¯`--clip` ã远å ããŠCLIPã¢ãã«ãæå®ããŸããWan2.2ã§ã¯CLIPã¢ãã«ã¯äžèŠã§ãã`--image_path` ã¯åæãã¬ãŒã ãšããŠäœ¿çšããç»åã®ãã¹ã§ãã
+
+`--end_image_path` ã§çµäºç»åãæå®ã§ããŸãããã®ãªãã·ã§ã³ã¯å®éšçãªãã®ã§ãããã®ãªãã·ã§ã³ãæå®ãããšãä¿åãããåç»ãæå®ãã¬ãŒã æ°ãããããå€ããªãããã€ãã€ãºãä¹ãããã`--trim_tail_frames 3` ãªã©ãæå®ããŠæ«å°Ÿã®ãã¬ãŒã ãããªãã³ã°ããããšããå§ãããŸãã
+
+I2Væšè«ã§ãFun Controlã¢ãã«ã䜿çšã§ããŸãã`--control_path` ã§å¶åŸ¡çšã®æ åãæå®ããŸãã
+
+ãã®ä»ã®ãªãã·ã§ã³ã¯T2Væšè«ãšåãã§ãã
+
+
+### New Batch and Interactive Modes / æ°ãããããã¢ãŒããšã€ã³ã¿ã©ã¯ãã£ãã¢ãŒã
+
+In addition to single video generation, Wan 2.1/2.2 now supports batch generation from file and interactive prompt input:
+
+#### Batch Mode from File / ãã¡ã€ã«ããã®ãããã¢ãŒã
+
+Generate multiple videos from prompts stored in a text file:
+
+```bash
+python src/musubi_tuner/wan_generate_video.py --from_file prompts.txt --task t2v-14B \
+--dit path/to/model.safetensors --vae path/to/vae.safetensors \
+--t5 path/to/t5_model.pth --save_path output_directory
+```
+
+The prompts file format:
+- One prompt per line
+- Empty lines and lines starting with # are ignored (comments)
+- Each line can include prompt-specific parameters using command-line style format:
+
+```
+A beautiful sunset over mountains --w 832 --h 480 --f 81 --d 42 --s 20
+A busy city street at night --w 480 --h 832 --g 7.5 --n low quality, blurry
+```
+
+Supported inline parameters (if ommitted, default values from the command line are used):
+- `--w`: Width
+- `--h`: Height
+- `--f`: Frame count
+- `--d`: Seed
+- `--s`: Inference steps
+- `--g` or `--l`: Guidance scale
+- `--fs`: Flow shift
+- `--i`: Image path (for I2V)
+- `--cn`: Control path (for Fun Control)
+- `--n`: Negative prompt
+
+In batch mode, models are loaded once and reused for all prompts, significantly improving overall generation time compared to multiple single runs.
+
+#### Interactive Mode / ã€ã³ã¿ã©ã¯ãã£ãã¢ãŒã
+
+Interactive command-line interface for entering prompts:
+
+```bash
+python src/musubi_tuner/wan_generate_video.py --interactive --task t2v-14B \
+--dit path/to/model.safetensors --vae path/to/vae.safetensors \
+--t5 path/to/t5_model.pth --save_path output_directory
+```
+
+In interactive mode:
+- Enter prompts directly at the command line
+- Use the same inline parameter format as batch mode
+- Use Ctrl+D (or Ctrl+Z on Windows) to exit
+- Models remain loaded between generations for efficiency
+
+
+æ¥æ¬èª
+åäžåç»ã®çæã«å ããŠãWan 2.1/2.2ã¯çŸåšããã¡ã€ã«ããã®ãããçæãšã€ã³ã¿ã©ã¯ãã£ããªããã³ããå
¥åããµããŒãããŠããŸãã
+
+#### ãã¡ã€ã«ããã®ãããã¢ãŒã
+
+ããã¹ããã¡ã€ã«ã«ä¿åãããããã³ããããè€æ°ã®åç»ãçæããŸãïŒ
+
+```bash
+python src/musubi_tuner/wan_generate_video.py --from_file prompts.txt --task t2v-14B \
+--dit path/to/model.safetensors --vae path/to/vae.safetensors \
+--t5 path/to/t5_model.pth --save_path output_directory
+```
+
+ããã³ãããã¡ã€ã«ã®åœ¢åŒïŒ
+- 1è¡ã«1ã€ã®ããã³ãã
+- 空è¡ã#ã§å§ãŸãè¡ã¯ç¡èŠãããŸãïŒã³ã¡ã³ãïŒ
+- åè¡ã«ã¯ã³ãã³ãã©ã€ã³åœ¢åŒã§ããã³ããåºæã®ãã©ã¡ãŒã¿ãå«ããããšãã§ããŸãïŒ
+
+ãµããŒããããŠããã€ã³ã©ã€ã³ãã©ã¡ãŒã¿ïŒçç¥ããå Žåãã³ãã³ãã©ã€ã³ã®ããã©ã«ãå€ã䜿çšãããŸãïŒ
+- `--w`: å¹
+- `--h`: é«ã
+- `--f`: ãã¬ãŒã æ°
+- `--d`: ã·ãŒã
+- `--s`: æšè«ã¹ããã
+- `--g` ãŸã㯠`--l`: ã¬ã€ãã³ã¹ã¹ã±ãŒã«
+- `--fs`: ãããŒã·ãã
+- `--i`: ç»åãã¹ïŒI2VçšïŒ
+- `--cn`: ã³ã³ãããŒã«ãã¹ïŒFun ControlçšïŒ
+- `--n`: ãã¬ãã£ãããã³ãã
+
+ãããã¢ãŒãã§ã¯ãã¢ãã«ã¯äžåºŠã ãããŒãããããã¹ãŠã®ããã³ããã§åå©çšããããããè€æ°åã®åäžå®è¡ãšæ¯èŒããŠå
šäœçãªçææéã倧å¹
ã«æ¹åãããŸãã
+
+#### ã€ã³ã¿ã©ã¯ãã£ãã¢ãŒã
+
+ããã³ãããå
¥åããããã®ã€ã³ã¿ã©ã¯ãã£ããªã³ãã³ãã©ã€ã³ã€ã³ã¿ãŒãã§ãŒã¹ïŒ
+
+```bash
+python src/musubi_tuner/wan_generate_video.py --interactive --task t2v-14B \
+--dit path/to/model.safetensors --vae path/to/vae.safetensors \
+--t5 path/to/t5_model.pth --save_path output_directory
+```
+
+ã€ã³ã¿ã©ã¯ãã£ãã¢ãŒãã§ã¯ïŒ
+- ã³ãã³ãã©ã€ã³ã§çŽæ¥ããã³ãããå
¥å
+- ãããã¢ãŒããšåãã€ã³ã©ã€ã³ãã©ã¡ãŒã¿åœ¢åŒã䜿çš
+- çµäºããã«ã¯ Ctrl+D (Windowsã§ã¯ Ctrl+Z) ã䜿çš
+- å¹çã®ãããã¢ãã«ã¯çæéã§èªã¿èŸŒãŸãããŸãŸã«ãªããŸã
+
+
diff --git a/docs/wan_1f.md b/docs/wan_1f.md
new file mode 100644
index 0000000000000000000000000000000000000000..0be1b186e94152bf5499fd98ce205aa4ce260b82
--- /dev/null
+++ b/docs/wan_1f.md
@@ -0,0 +1,175 @@
+# Wan2.1 One Frame (Single Frame) Inference and Training / Wan2.1 1ãã¬ãŒã æšè«ãšåŠç¿
+
+## Overview / æŠèŠ
+
+This document describes the application of "One Frame Inference" found in the FramePack model to Wan2.1.
+
+1. **Basic One Frame Inference**:
+ * Input the starting image and prompt, limiting the number of frames to generate to 1 frame. Use the Wan2.1 I2V model.
+ * Intentionally set a large value for the RoPE timestamp assigned to the generated single frame. This aims to obtain a single static image that has changed temporally and semantically according to the prompt from the starting image.
+ * However, unlike FramePack, using Wan2.1's model as is for inference results in images that are almost identical to the starting image, with noise mixed in. This seems to be due to the characteristics of Wan2.1.
+ * By additionally training a LoRA, it is possible to reflect changes according to the prompt in the generated image while also reducing noise.
+
+2. **Intermediate Frame One Frame Inference**:
+ * Similar to the kisekaeichi method, use the FLF2V (First and Last Frame to Video) method to generate intermediate frames. Use the FLF2V model.
+ * Set the RoPE timestamp of the generated image to an intermediate value between the timestamps of the starting image and the ending image.
+ * (This is a theoretical proposal, implemented but not yet tested.)
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã§ã¯ãFramePackã¢ãã«ã§èŠãã ãããã1ãã¬ãŒã æšè«ãã®ãWan2.1ãžã®é©çšã«ã€ããŠèª¬æããŸãã
+
+1. **åºæ¬çãª1ãã¬ãŒã æšè«**:
+ * éå§ç»åãšããã³ãããå
¥åãšããçæãããã¬ãŒã æ°ã1ãã¬ãŒã ã«éå®ããŸããWan2.1ã® I2V ã¢ãã«ã䜿çšããŸãã
+ * ãã®éãçæãã1ãã¬ãŒã ã«å²ãåœãŠãRoPEã®ã¿ã€ã ã¹ã¿ã³ããæå³çã«å€§ããªå€ã«èšå®ããŸããããã¯éå§ç»åããããã³ããã«åŸã£ãŠæéçã»æå³çã«å€åããåäžã®éæ¢ç»ãåŸãããšãç®çãšããŠããŸãã
+ * ããããªããFramePackãšç°ãªããWan2.1ã®ã¢ãã«ããã®ãŸãŸå©çšããæšè«ã§ã¯ããã®ããã«èšå®ããŠãçæãããç»åã¯éå§ç»åãšã»ãŒåããã®ã«ãªãããŸããã€ãºãæ··ãããŸããããã¯Wan2.1ã®ç¹æ§ã«ãããã®æãããŸãã
+ * 远å ã§LoRAãåŠç¿ããããšã§ãããã³ããã«åŸã£ãå€åãçæç»åã«åæ ãããããšãå¯èœã§ããã€ãã€ãºãæããããããšãããããŸããã
+
+2. **äžéãã¬ãŒã ã®1ãã¬ãŒã æšè«**:
+ * kisekaeichiæ¹åŒãšäŒŒããFLF2V (First and Last Frame to Video) æ¹åŒãå©çšããäžéã®ãã¬ãŒã ãçæããŸããFLF2Vã¢ãã«ã䜿çšããŸãã
+ * çæããç»åã®RoPEã¿ã€ã ã¹ã¿ã³ãããéå§ç»åã®ã¿ã€ã ã¹ã¿ã³ããšçµç«¯ç»åã®ã¿ã€ã ã¹ã¿ã³ãã®äžéçãªå€ã«èšå®ããŸãã
+
+
+
+## One (single) Frame Inference / 1ãã¬ãŒã æšè«
+
+**This feature is highly experimental** and is not officially supported. It is an independent implementation, not an official feature of Wan2.1.
+
+To perform one-frame inference, specify the `--one_frame_inference` option with `target_index` and `control_index`. In Wan2.1, it is necessary to combine this with LoRA, so please set it up similarly to LoRA training settings. The model used should also be the same.
+
+An example description is as follows:
+
+```bash
+--output_type latent_images --image_path start_image.png --control_image_path start_image.png \
+--one_frame_inference control_index=0,target_index=1
+```
+
+To perform one-frame inference for intermediate frames, specify multiple indices for `control_index` separated by semicolons. The description is as follows:
+
+```bash
+--output_type latent_images --image_path start_image.png --control_image_path start_image.png end_image.png \
+--one_frame_inference control_index=0;2,target_index=1
+```
+
+When specifying `--output_type` as `latent_images`, both latent and image will be saved.
+
+The `--image_path` is used to obtain CLIP features for one-frame inference. Usually, the starting image should be specified. The `--end_image_path` is used to obtain CLIP features for the ending image. Usually, the ending image should be specified.
+
+The `--control_image_path` is a newly added argument to specify the control image. Usually, the starting image (and both starting and ending images for intermediate frame inference) should be specified.
+
+The options for `--one_frame_inference` are specified as comma-separated values. Here, the index represents the RoPE timestamp.
+
+- `target_index=`: Specifies the index of the generated image.
+- `control_index=`: Specifies the index of the control image. Please specify the same number of indices as the number of control images specified in `--control_image_path`.
+
+The optimal values for `target_index` and `control_index` are unknown. Please specify `target_index` as 1 or greater. For one-frame inference, specify `control_index=0`. For intermediate frame one-frame inference, specify `control_index=0;2`, where 0 and a value greater than `target_index` are specified.
+
+
+æ¥æ¬èª
+
+**ãã®æ©èœã¯éåžžã«å®éšçã§ãã**ãå
¬åŒã«ã¯ãµããŒããããŠããŸãããWan2.1å
¬åŒã®æ©èœã§ã¯ãªããç¬èªã®å®è£
ã§ãã
+
+1ãã¬ãŒã æšè«ãè¡ãã«ã¯`--one_frame_inference`ãªãã·ã§ã³ã« `target_index` ãš `control_index` ãæå®ããŠãã ãããWan2.1ã§ã¯LoRAãšã®çµã¿åãããå¿
èŠã«ãªããŸãã®ã§ãLoRAã®åŠç¿èšå®ãšåæ§ã®èšå®ãè¡ã£ãŠãã ããã䜿çšããã¢ãã«ã«ã€ããŠãåæ§ã§ãã
+
+èšè¿°äŸã¯ä»¥äžã®éãã§ãã
+
+```bash
+--output_type latent_images --image_path start_image.png --control_image_path start_image.png \
+--one_frame_inference control_index=0,target_index=1
+```
+
+äžéãã¬ãŒã ã®1ãã¬ãŒã æšè«ãè¡ãã«ã¯ã`control_index`ã«ã»ãã³ãã³åºåãã§è€æ°ã®ã€ã³ããã¯ã¹ãæå®ããŸãã以äžã®ããã«èšè¿°ããŸãã
+
+```bash
+--output_type latent_images --image_path start_image.png --end_image_path end_image.png \
+--control_image_path start_image.png end_image.png --one_frame_inference control_index=0;2,target_index=1
+```
+
+`--output_type`ã«`latent_images`ãæå®ãããšlatentãšç»åã®äž¡æ¹ãä¿åãããŸãã
+
+`--image_path`ã¯ã1ãã¬ãŒã æšè«ã§ã¯CLIPã®ç¹åŸŽéãååŸããããã«çšããããŸããéåžžã¯éå§ç»åãæå®ããŠãã ããã`--end_image_path`ã¯ãçµäºç»åã®CLIPç¹åŸŽéãååŸããããã«çšããããŸããéåžžã¯çµäºç»åãæå®ããŠãã ããã
+
+`--control_image_path`ã¯æ°ãã远å ãããåŒæ°ã§ãå¶åŸ¡çšç»åãæå®ããããã«çšããããŸããéåžžã¯éå§ç»åïŒäžéãã¬ãŒã æšè«ã®å Žåã¯éå§ç»åãšçµäºç»åã®äž¡æ¹ïŒãæå®ããŠãã ããã
+
+`--one_frame_inference`ã®ãªãã·ã§ã³ã«ã¯ãã«ã³ãåºåãã§ä»¥äžã®ãªãã·ã§ã³ãæå®ããŸããããã§indexã¯RoPEã®ã¿ã€ã ã¹ã¿ã³ãã衚ããŸãã
+
+- `target_index=<æŽæ°>`: çæããç»åã®indexãæå®ããŸãã
+- `control_index=<æŽæ°ãŸãã¯ã»ãã³ãã³åºåãã®æŽæ°>`: å¶åŸ¡çšç»åã®indexãæå®ããŸãã`--control_image_path`ã§æå®ããå¶åŸ¡çšç»åã®æ°ãšåãæ°ã®ã€ã³ããã¯ã¹ãæå®ããŠãã ããã
+
+`target_index`ã`control_index`ã®æé©å€ã¯äžæã§ãã`target_index`ã¯1以äžãæå®ããŠãã ããã`control_index`ã¯ã1ãã¬ãŒã æšè«ã§ã¯`control_index=0`ãæå®ããŸããäžéãã¬ãŒã ã®1ãã¬ãŒã æšè«ã§ã¯ã`control_index=0;2`ã®ããã«ã0ãš`target_index`ãã倧ããå€ãæå®ããŸãã
+
+
+
+## One Frame (Single Frame) Training / 1ãã¬ãŒã åŠç¿
+
+**This feature is experimental.** It performs training in a manner similar to one-frame inference.
+
+This currently reuses the dataset settings of the FramePack model. Please refer to the [FramePack documentation](./framepack_1f.md#one-frame-single-frame-training--1ãã¬ãŒã åŠç¿) and the [FramePack dataset settings](./dataset_config.md#framepack-one-frame-training).
+
+`fp_1f_clean_indices` corresponds to the `control_index` described below.
+
+However, `fp_1f_no_post` is ignored in Wan2.1, and alpha masks are not yet supported.
+
+When performing one-frame training, please create the cache by specifying `--one_frame` in `wan_cache_latents.py`. Also, specify `--one_frame` in `wan_train_network.py` to change the inference method for sample image generation.
+
+In one-frame training, the I2V 14B model is used. Specify `--task i2v-14B` and the corresponding weights. For intermediate frame one-frame training, the FLF2V model is used. Specify `--task flf2v-14B` and the corresponding weights.
+
+In simple experiments for intermediate frame one-frame training, using `control_index=0;2`, `target_index=1` (in dataset settings, `fp_1f_clean_indices = [0, 2]`, `fp_1f_target_index = 1`), yielded better results than `0;10` and `5`.
+
+The optimal training settings are currently unknown. Feedback is welcome.
+
+### Example of prompt file description for sample generation
+
+The description is almost the same as for FramePack. The command line option `--one_frame_inference` corresponds to `--of`, and `--control_image_path` corresponds to `--ci`. `--ei` is used to specify the ending image.
+
+Note that while `--ci` can be specified multiple times, it should be specified as `--ci img1.png --ci img2.png`, unlike `--control_image_path` which is specified as `--control_image_path img1.png img2.png`.
+
+For normal one-frame training:
+```
+The girl wears a school uniform. --i path/to/start.png --ci path/to/start.png --of target_index=1,control_index=0 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+For intermediate frame one-frame training
+```
+The girl wears a school uniform. --i path/to/start.png --ei path/to/end.png --ci path/to/start.png --ci path/to/end.png --of target_index=1,control_index=0;2 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+
+æ¥æ¬èª
+
+**ãã®æ©èœã¯å®éšçãªãã®ã§ãã** 1ãã¬ãŒã æšè«ãšåæ§ã®æ¹æ³ã§åŠç¿ãè¡ããŸãã
+
+çŸåšã¯ãFramePackã¢ãã«ã®ããŒã¿ã»ããèšå®ãæµçšããŠããŸãã[FramePackã®ããã¥ã¡ã³ã](./framepack_1f.md#one-frame-single-frame-training--1ãã¬ãŒã åŠç¿)ããã³
+[FramePackã®ããŒã¿ã»ããèšå®](./dataset_config.md#framepack-one-frame-training)ãåç
§ããŠãã ããã
+
+`fp_1f_clean_indices` ãåŸè¿°ã® `control_index` ã«çžåœããŸãã
+
+ãã ãã`fp_1f_no_post`ã¯Wan2.1ã§ã¯ç¡èŠãããŸãããŸãã¢ã«ãã¡å€ã«ãããã¹ã¯ãæªå¯Ÿå¿ã§ãã
+
+1ãã¬ãŒã åŠç¿æã¯ã`wan_cache_latents.py`ã«`--one_frame`ãæå®ããŠãã£ãã·ã¥ãäœæããŠãã ããããŸãã`wan_train_network.py`ã«`--one_frame`ãæå®ããŠãµã³ãã«ç»åçææã®æšè«æ¹æ³ã倿ŽããŠãã ããã
+
+1ãã¬ãŒã åŠç¿ã§ã¯I2Vã®14Bã¢ãã«ã䜿çšããŸãã`--task i2v-14B`ãæå®ãã該åœããéã¿ãæå®ããŠãã ãããäžéãã¬ãŒã ã®1ãã¬ãŒã åŠç¿ã§ã¯ãFLF2Vã¢ãã«ã䜿çšããŸãã`--task flf2v-14B`ãæå®ãã該åœããéã¿ãæå®ããŠãã ããã
+
+äžéãã¬ãŒã åŠç¿ã®ç°¡åãªå®éšã§ã¯ã`control_index=0;2`ã`target_index=1`ãïŒããŒã¿ã»ããèšå®ã§ã¯ `fp_1f_clean_indices = [0, 2]`ã`fp_1f_target_index = 1`ïŒã`0;10`ããã³`5`ãããè¯ãçµæãåŸãããŸããã
+
+æé©ãªåŠç¿èšå®ã¯ä»ã®ãšããäžæã§ãããã£ãŒãããã¯ãæè¿ããŸãã
+
+**ãµã³ãã«çæã®ããã³ãããã¡ã€ã«èšè¿°äŸ**
+
+FramePackãšã»ãŒåæ§ã§ããã³ãã³ãã©ã€ã³ãªãã·ã§ã³`--one_frame_inference`ã«çžåœãã `--of`ãšã`--control_image_path`ã«çžåœãã`--ci`ãçšæãããŠããŸãã`--ei`ã¯çµç«¯ç»åãæå®ããŸãã
+
+â» `--control_image_path`ã¯`--control_image_path img1.png img2.png`ã®ããã«ã¹ããŒã¹ã§åºåãã®ã«å¯ŸããŠã`--ci`ã¯`--ci img1.png --ci img2.png`ã®ããã«æå®ããã®ã§æ³šæããŠãã ããã
+
+éåžžã®1ãã¬ãŒã åŠç¿:
+```
+The girl wears a school uniform. --i path/to/start.png --ci path/to/start.png --of target_index=1,control_index=0 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+äžéãã¬ãŒã ã®1ãã¬ãŒã åŠç¿ïŒéå§ç»åãšçµç«¯ç»åã®äž¡æ¹ãæå®ïŒ:
+```
+The girl wears a school uniform. --i path/to/start.png --ei path/to/end.png --ci path/to/start.png --ci path/to/end.png --of target_index=1,control_index=0;2 --d 1111 --f 1 --s 10 --fs 7 --d 1234 --w 384 --h 576
+```
+
+
+
diff --git a/docs/zimage.md b/docs/zimage.md
new file mode 100644
index 0000000000000000000000000000000000000000..87c585528283fda1f28cb90aaa3f543654f9fa68
--- /dev/null
+++ b/docs/zimage.md
@@ -0,0 +1,404 @@
+# Z-Image
+
+## Overview / æŠèŠ
+
+This document describes the usage of Z-Image architecture within the Musubi Tuner framework. Z-Image is a model architecture that supports text-to-image generation.
+
+Pre-caching, training, and inference options can be found via `--help`. Many options are shared with HunyuanVideo, so refer to the [HunyuanVideo documentation](./hunyuan_video.md) as needed.
+
+This feature is experimental.
+
+
+æ¥æ¬èª
+
+ãã®ããã¥ã¡ã³ãã¯ãMusubi Tunerãã¬ãŒã ã¯ãŒã¯å
ã§ã®Z-Imageã¢ãŒããã¯ãã£ã®äœ¿çšæ³ã«ã€ããŠèª¬æããŠããŸããZ-Imageã¯ããã¹ãããç»åãçæããããšãã§ããã¢ãã«ã¢ãŒããã¯ãã£ã§ããZ-Imageã¯çŸåšèžçã¢ãã«ã§ããTurboçãããªãªãŒã¹ãããŠããªããããåŠç¿ã¯äžå®å®ã§ããã¢ãã«ã®ããŠã³ããŒãã®é
ãåç
§ããŠãã ããã
+
+äºåãã£ãã·ã³ã°ãåŠç¿ãæšè«ã®ãªãã·ã§ã³ã¯`--help`ã§ç¢ºèªããŠãã ãããHunyuanVideoãšå
±éã®ãªãã·ã§ã³ãå€ããããŸãã®ã§ãå¿
èŠã«å¿ããŠ[HunyuanVideoã®ããã¥ã¡ã³ã](./hunyuan_video.md)ãåç
§ããŠãã ããã
+
+ãã®æ©èœã¯å®éšçãªãã®ã§ãã
+
+
+
+## Download the model / ã¢ãã«ã®ããŠã³ããŒã
+
+You need to download the DiT, VAE, and Text Encoder (Qwen3) models.
+
+*As of January 2026, the base model has been released. VAE and Text Encoder are the same as the Turbo model, so if you have already downloaded them, there is no need to download them again.*
+
+The base version DiT, VAE, and Text Encoder can be obtained from Tongyi-MAI's official repository or ComfyUI weights. You can use either of the following:
+
+- **Official Repository**: [Tongyi-MAI/Z-Image](https://huggingface.co/Tongyi-MAI/Z-Image/)
+ - For DiT and Text Encoder, download all the split files and specify the first file (e.g., `00001-of-00002.safetensors`) in the arguments.
+ - You do not need to download files other than `*.safetensors`.
+- **ComfyUI Weights**: [Comfy-Org/z_image](https://huggingface.co/Comfy-Org/z_image)
+
+You need to prepare the following models:
+
+- **DiT**: The transformer model.
+- **VAE**: The autoencoder model.
+- **Text Encoder**: Qwen3 model.
+
+*The following information is prior to the base model release. Since the base model has been released, it is recommended to use the base model for training.*
+
+> If you train Turbo model, it is recommended to use AI Toolkit/ostris's De-Turbo model. Download `z_image_de_turbo_v1_bf16.safetensors` from [ostris/Z-Image-De-Turbo](https://huggingface.co/ostris/Z-Image-De-Turbo) and use it as the DiT model.
+>
+> As another option, you can also use ostris's [ostris/zimage_turbo_training_adapter](https://huggingface.co/ostris/zimage_turbo_training_adapter) to train by combining the Turbo version with an adapter. In this case, download `zimage_turbo_training_adapter_v2.safetensors`, etc., and specify this LoRA weight in the `--base_weights` option during training.
+>
+> We would like to express our deep gratitude to ostris for providing the De-Turbo model and Training Adapter.
+
+
+æ¥æ¬èª
+
+DiT, VAE, Text Encoder (Qwen3) ã®ã¢ãã«ãããŠã³ããŒãããå¿
èŠããããŸãã
+
+*â»2026/1ïŒBaseã¢ãã«ããªãªãŒã¹ãããŸãããVAEãšText Encoderã¯Turboã¢ãã«ãšåãã§ãã®ã§ãããŠã³ããŒãæžã¿ã®å Žåã¯åããŠã³ããŒãã®å¿
èŠã¯ãããŸããã*
+
+Baseçã®DiTãVAEãšText Encoderã¯Tongyi-MAIã®å
¬åŒãªããžããªãŸãã¯ComfyUIçšéã¿ããååŸã§ããŸãã以äžã®ããããã䜿çšããŠãã ããïŒ
+
+- **å
¬åŒãªããžããª**: [Tongyi-MAI/Z-Image](https://huggingface.co/Tongyi-MAI/Z-Image/)
+ - DiTãText Encoderã¯ãåå²ãããè€æ°ã®ãã¡ã€ã«ããã¹ãŠããŠã³ããŒãããåŒæ°ã«ã¯ `00001-of-00002.safetensors` ã®ãããªæåã®ãã¡ã€ã«ãæå®ããŠãã ããã
+ - `*.safetensors` ãã¡ã€ã«ä»¥å€ã¯ããŠã³ããŒãããå¿
èŠã¯ãããŸããã
+- **ComfyUIçšéã¿**: [Comfy-Org/z_image](https://huggingface.co/Comfy-Org/z_image)
+
+以äžã®ã¢ãã«ãæºåããŠãã ããïŒ
+
+- **DiT**: Transformerã¢ãã«ã
+- **VAE**: Autoencoderã¢ãã«ã
+- **Text Encoder**: Qwen3ã¢ãã«ã
+
+*以äžã¯Baseã¢ãã«ãªãªãŒã¹åã®æ
å ±ã§ããBaseã¢ãã«ããªãªãŒã¹ããããããåŠç¿ã«ã¯Baseã¢ãã«ã®äœ¿çšããå§ãããŸãã*
+
+> Turboã¢ãã«ã®åŠç¿ãè¡ãå Žåã¯ãAI Toolkit/ostrisæ°ã®De-Turboã¢ãã«ã䜿çšããããšããå§ãããŸãã[ostris/Z-Image-De-Turbo](https://huggingface.co/ostris/Z-Image-De-Turbo) ãã `z_image_de_turbo_v1_bf16.safetensors` ãããŠã³ããŒãããDiTã¢ãã«ãšããŠäœ¿çšããŠãã ããã
+>
+> å¥ã®ãªãã·ã§ã³ãšããŠãostrisæ°ã® [ostris/zimage_turbo_training_adapter](https://huggingface.co/ostris/zimage_turbo_training_adapter) ã䜿çšããŠãTurboçãšAdapterãçµã¿åãããŠåŠç¿ããããšãã§ããŸãããã®å Žåã¯ã`zimage_turbo_training_adapter_v2.safetensors` çãããŠã³ããŒãããåŠç¿æã« `--base_weights` ãªãã·ã§ã³ã«ãã®LoRAéã¿ãæå®ããŠãã ããã
+>
+> De-Turboã¢ãã«ããã³Training AdapterãæäŸããŠãã ãã£ã ostris æ°ã«æ·±ãæè¬ããŸãã
+
+
+
+## Pre-caching / äºåãã£ãã·ã³ã°
+
+### Latent Pre-caching / latentã®äºåãã£ãã·ã³ã°
+
+Latent pre-caching uses a dedicated script for Z-Image.
+
+```bash
+python src/musubi_tuner/zimage_cache_latents.py \
+ --dataset_config path/to/toml \
+ --vae path/to/vae_model
+```
+
+- Uses `zimage_cache_latents.py`.
+- The dataset should be an image dataset.
+- Z-Image does not support control images, so only target image latents are cached.
+
+
+æ¥æ¬èª
+
+latentã®äºåãã£ãã·ã³ã°ã¯Z-Imageå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `zimage_cache_latents.py`ã䜿çšããŸãã
+- ããŒã¿ã»ããã¯ç»åããŒã¿ã»ããã§ããå¿
èŠããããŸãã
+- Z-Imageã¯ã³ã³ãããŒã«ç»åããµããŒãããŠããªããããã¿ãŒã²ããç»åã®latentã®ã¿ããã£ãã·ã¥ãããŸãã
+
+
+
+### Text Encoder Output Pre-caching / ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°
+
+Text encoder output pre-caching also uses a dedicated script.
+
+```bash
+python src/musubi_tuner/zimage_cache_text_encoder_outputs.py \
+ --dataset_config path/to/toml \
+ --text_encoder path/to/text_encoder \
+ --batch_size 16
+```
+
+- Uses `zimage_cache_text_encoder_outputs.py`.
+- Requires `--text_encoder` (Qwen3).
+- Use `--fp8_llm` option to run the Text Encoder in fp8 mode for VRAM savings.
+- Larger batch sizes require more VRAM. Adjust `--batch_size` according to your VRAM capacity.
+
+
+æ¥æ¬èª
+
+ããã¹ããšã³ã³ãŒããŒåºåã®äºåãã£ãã·ã³ã°ãå°çšã®ã¹ã¯ãªããã䜿çšããŸãã
+
+- `zimage_cache_text_encoder_outputs.py`ã䜿çšããŸãã
+- `--text_encoder`ïŒQwen3ïŒãå¿
èŠã§ãã
+- ããã¹ããšã³ã³ãŒããŒãfp8ã¢ãŒãã§å®è¡ããããã®`--fp8_llm`ãªãã·ã§ã³ã䜿çšããããšã§VRAMãç¯çŽã§ããŸãã
+- ããããµã€ãºã倧ããã»ã©ãããå€ãã®VRAMãå¿
èŠã§ããVRAM容éã«å¿ããŠ`--batch_size`ã調æŽããŠãã ããã
+
+
+
+## Training / åŠç¿
+
+Training uses a dedicated script `zimage_train_network.py`.
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 --mixed_precision bf16 src/musubi_tuner/zimage_train_network.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 \
+ --timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0 \
+ --optimizer_type adamw8bit --learning_rate 1e-4 --gradient_checkpointing \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --network_module networks.lora_zimage --network_dim 32 \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-lora
+```
+
+- Uses `zimage_train_network.py`.
+- **Requires** specifying `--vae` and `--text_encoder`.
+- **Requires** specifying `--network_module networks.lora_zimage`.
+- It is not yet clear whether `--mixed_precision bf16` or `fp16` is better for Z-Image training.
+- The timestep sampling settings for Z-Image training are unclear, but it may be good to base them on `--timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0` and adjust as needed.
+- Memory saving options like `--fp8_base` and `--fp8_scaled` (for DiT) and `--fp8_llm` (for Text Encoder) are available.
+- `--gradient_checkpointing` is available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+
+
+æ¥æ¬èª
+
+Z-Imageã®åŠç¿ã¯å°çšã®ã¹ã¯ãªãã`zimage_train_network.py`ã䜿çšããŸãã
+
+ã³ãã³ãäŸã¯è±èªçãåç
§ããŠãã ããã
+
+- `zimage_train_network.py`ã䜿çšããŸãã
+- `--vae`ã`--text_encoder`ãæå®ããå¿
èŠããããŸãã
+- `--network_module networks.lora_zimage`ãæå®ããå¿
èŠããããŸãã
+- Z-Imageã®åŠç¿ã«`--mixed_precision bf16`ãš`fp16`ã®ã©ã¡ããè¯ããã¯ãŸã äžæã§ãã
+- Z-Imageã®ã¿ã€ã ã¹ããããµã³ããªã³ã°èšå®ã¯äžæã§ããã`--timestep_sampling shift --weighting_scheme none --discrete_flow_shift 2.0`ãããŒã¹ã«èª¿æŽãããšè¯ããããããŸããã
+- `--fp8_base`ã`--fp8_scaled`ïŒDiTçšïŒã`--fp8_llm`ïŒããã¹ããšã³ã³ãŒããŒçšïŒãªã©ã®ã¡ã¢ãªç¯çŽãªãã·ã§ã³ãå©çšå¯èœã§ãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãå©çšå¯èœã§ãã詳现ã¯[HunyuanVideoããã¥ã¡ã³ã](./hunyuan_video.md#memory-optimization)ãåç
§ããŠãã ããã
+
+
+
+### Converting LoRA weights to Diffusers format for ComfyUI / LoRAéã¿ãComfyUIã§äœ¿çšå¯èœãªDiffusers圢åŒã«å€æãã
+
+A script is provided to convert Z-Image LoRA weights to Diffusers format for ComfyUI. LoHa and LoKr formats are supported.
+
+```bash
+python src/musubi_tuner/networks/convert_lora.py \
+ --input path/to/zimage_lora.safetensors \
+ --output path/to/output_diffusers_lora.safetensors \
+ --target other
+```
+
+- The script is `convert_lora.py`.
+- `--input` argument is the input Z-Image LoRA weights file.
+- `--output` argument is the output Diffusers format LoRA weights file.
+- `--target other` means Diffusers format can be used in ComfyUI.
+
+`networks\convert_z_image_lora_to_comfy.py` can also be used for this purpose, but the converted weights may not work correctly with nunchaku.
+
+
+æ¥æ¬èª
+
+Z-Imageã®LoRAéã¿ãComfyUIã§äœ¿çšã§ããDiffusers圢åŒã«å€æããã¹ã¯ãªãããæäŸãããŠããŸãã
+
+- ã¹ã¯ãªããã¯`convert_lora.py`ã§ãã
+- `--input`åŒæ°ã¯å
¥åã®Z-Image LoRAéã¿ãã¡ã€ã«ã§ãã
+- `--output`åŒæ°ã¯åºåã®Diffusers圢åŒã®LoRAéã¿ãã¡ã€ã«ã§ãã
+- `--target other`ã¯ComfyUIã§äœ¿çšã§ããDiffusers圢åŒãæå³ããŸãã
+
+`networks\convert_z_image_lora_to_comfy.py`ããã®ç®çã§äœ¿çšã§ããŸããã倿ãããéã¿ãnunchakuã§æ£ããåäœããªãå¯èœæ§ããããŸãã
+
+
+
+### Memory Optimization
+
+- `--fp8_base` and `--fp8_scaled` options are available to reduce memory usage of DiT (specify both together). Quality may degrade slightly.
+- `--fp8_llm` option is available to reduce memory usage of Text Encoder (Qwen3).
+- `--gradient_checkpointing` and `--gradient_checkpointing_cpu_offload` are available for memory savings. See [HunyuanVideo documentation](./hunyuan_video.md#memory-optimization) for details.
+- `--blocks_to_swap` option is available to offload some blocks to CPU. The maximum number of blocks that can be offloaded is 28.
+
+
+æ¥æ¬èª
+
+- DiTã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_base`ãš`--fp8_scaled`ãªãã·ã§ã³ãæå®å¯èœã§ãïŒåæã«æå®ããŠãã ããïŒãå質ã¯ããäœäžããå¯èœæ§ããããŸãã
+- Text Encoder (Qwen3)ã®ã¡ã¢ãªäœ¿çšéãåæžããããã«ã`--fp8_llm`ãªãã·ã§ã³ãæå®å¯èœã§ãã
+- ã¡ã¢ãªç¯çŽã®ããã«`--gradient_checkpointing`ãš`--gradient_checkpointing_cpu_offload`ãå©çšå¯èœã§ãã詳现ã¯[HunyuanVideoããã¥ã¡ã³ã](./hunyuan_video.md#memory-optimization)ãåç
§ããŠãã ããã
+- `--blocks_to_swap`ãªãã·ã§ã³ã§ãäžéšã®ãããã¯ãCPUã«ãªãããŒãã§ããŸãããªãããŒãå¯èœãªæå€§ãããã¯æ°ã¯28ã§ãã
+
+
+
+### Attention
+
+- `--sdpa` for PyTorch's scaled dot product attention (does not require additional dependencies).
+- `--flash_attn` for [FlashAttention](https://github.com/Dao-AILab/flash-attention).
+- `--xformers` for xformers (requires `--split_attn`).
+- `--sage_attn` for SageAttention (not yet supported for training).
+- `--split_attn` processes attention in chunks, reducing VRAM usage slightly.
+
+
+æ¥æ¬èª
+
+- `--sdpa`ã§PyTorchã®scaled dot product attentionã䜿çšïŒè¿œå ã®äŸåã©ã€ãã©ãªãå¿
èŠãšããŸããïŒã
+- `--flash_attn`ã§[FlashAttention](https://github.com/Dao-AILab/flash-attention)ã䜿çšã
+- `--xformers`ã§xformersã®å©çšãå¯èœïŒ`--split_attn`ãå¿
èŠïŒã
+- `--sage_attn`ã§SageAttentionã䜿çšïŒçŸæç¹ã§ã¯åŠç¿ã«æªå¯Ÿå¿ïŒã
+- `--split_attn`ãæå®ãããšãattentionãåå²ããŠåŠçããVRAM䜿çšéããããã«æžãããŸãã
+
+
+
+### Sample images during training with De-Turbo model or Training Adapter / De-Turboã¢ãã«ãŸãã¯Training Adapterã§åŠç¿äžã«ãµã³ãã«ç»åãçæãã
+
+When training with the De-Turbo model or Training Adapter, add negative prompt and CFG scale to the sampling options to generate sample images with CFG. It is also recommended to increase the number of steps. `--l` specifies the CFG scale (default 4).
+
+```text
+A beautiful landscape painting of mountains during sunset. --n bad quality --w 1280 --h 720 --fs 3 --s 20 --d 1234 --l 4
+```
+
+
+æ¥æ¬èª
+
+ De-Turboã¢ãã«ãŸãã¯Training Adapterã§åŠç¿ããå Žåããµã³ããªã³ã°ãªãã·ã§ã³ã«ãã¬ãã£ãããã³ãããšCFGã¹ã±ãŒã«ã远å ããŠãCFGããã§ãµã³ãã«ç»åãçæããŠãã ããããŸãã¹ãããæ°ãå¢ããããšããå§ãããŸãã`--l`ã§CFGã¹ã±ãŒã«ãæå®ããŸãïŒããã©ã«ãã¯4ã§ãïŒã
+
+ ```text
+A beautiful landscape painting of mountains during sunset. --n bad quality --w 1280 --h 720 --fs 3 --s 20 --d 1234 --l 4
+```
+
+
+
+## Finetuning
+
+Finetuning uses a dedicated script `zimage_train.py`. This script performs full finetuning of the model, not LoRA. Sample usage is as follows:
+
+```bash
+accelerate launch --num_cpu_threads_per_process 1 src/musubi_tuner/zimage_train.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --dataset_config path/to/toml \
+ --sdpa --mixed_precision bf16 --gradient_checkpointing \
+ --optimizer_type adafactor --learning_rate 1e-6 --fused_backward_pass \
+ --optimizer_args "relative_step=False" "scale_parameter=False" "warmup_init=False" \
+ --max_grad_norm 0 --lr_scheduler constant_with_warmup --lr_warmup_steps 10 \
+ --max_data_loader_n_workers 2 --persistent_data_loader_workers \
+ --max_train_epochs 16 --save_every_n_epochs 1 --seed 42 \
+ --output_dir path/to/output_dir --output_name name-of-model
+```
+
+- Uses `zimage_train.py`.
+- Finetuning requires a large amount of VRAM. The use of memory saving options is strongly recommended.
+- `--full_bf16`: Loads the model weights in bfloat16 format to significantly reduce VRAM usage.
+- `--optimizer_type adafactor`: Using Adafactor is recommended for finetuning.
+- `--fused_backward_pass`: Reduces VRAM usage during the backward pass when using Adafactor.
+- `--mem_eff_save`: Reduces main memory (RAM) usage when saving checkpoints.
+- `--blocks_to_swap`: Swaps model blocks between VRAM and main memory to reduce VRAM usage. This is effective when VRAM is limited.
+- `--disable_numpy_memmap`: Disables numpy memory mapping for model loading, loading with standard file read. Increases RAM usage but may speed up model loading in some cases.
+- `--block_swap_optimizer_patch_params` option is available to patch optimizer parameters for block swapping.
+
+`--full_bf16` reduces VRAM usage by about 30GB but may impact model accuracy as the weights are kept in bfloat16. Note that the optimizer state is still kept in float32. In addition, it is recommended to use this with an optimizer that supports stochastic rounding. In this repository, Adafactor optimizer with `--fused_backward_pass` option supports stochastic rounding.
+
+`--block_swap_optimizer_patch_params` option moves the gradients to the same device as the parameters during the optimizer step, which makes it work with block swapping. This workaround currently works with AdamW and Adafactor etc. AdamW8bit and other optimizers do not work with this patch due to their specific implementation.
+
+When using `--mem_eff_save`, please note that traditional saving methods are still used when saving the optimizer state in `--save_state`, requiring about 20GB of main memory.
+
+### Recommended Settings
+
+We are still exploring the optimal settings. The configurations above are just examples, so please adjust them as needed. We welcome your feedback.
+
+If you have ample VRAM, you can use any optimizer of your choice. `--full_bf16` is not recommended.
+
+For limited VRAM environments (e.g., 48GB or less), you can use one of the following options:
+
+1. Use `--blocks_to_swap` + `--block_swap_optimizer_patch_params` + compatible optimizer.
+2. Use `--blocks_to_swap` + Adafactor + `--fused_backward_pass`.
+3. Use `--full_bf16` + Adafactor optimizer + `--fused_backward_pass`.
+4. Use `--blocks_to_swap` + `--full_bf16` + Adafactor optimizer + `--fused_backward_pass`.
+
+VRAM usage decreases in the order of 1. to 4. (4. being the least). The time taken for training increases in the order of 2. = 3. < 4. < 1. (1. being the slowest). The expected accuracy is in the order of 1. > 2. > 3. = 4. (1. being the highest).
+
+The sample configuration is a recommended setting when using option 3. If VRAM is further constrained, you can also use option 4. Adjust `--lr_warmup_steps` to a value between about 10 and 100.
+
+`--fused_backward_pass` currently does not support gradient accumulation. Also, since max grad norm may not work as expected, it is recommended to specify `--max_grad_norm 0`.
+
+Experience with other models suggests that the learning rate may need to be reduced significantly; something in the range of 1e-6 to 1e-5 might be a good place to start.
+
+
+æ¥æ¬èª
+
+Finetuningã¯å°çšã®ã¹ã¯ãªãã`zimage_train.py`ã䜿çšããŸãããã®ã¹ã¯ãªããã¯LoRAã§ã¯ãªããã¢ãã«å
šäœã®finetuningãè¡ããŸãã
+
+- `zimage_train.py`ã䜿çšããŸãã
+- Finetuningã¯å€§éã®VRAMãå¿
èŠãšããŸããã¡ã¢ãªç¯çŽãªãã·ã§ã³ã®äœ¿çšãåŒ·ãæšå¥šããŸãã
+- `--full_bf16`: ã¢ãã«ã®éã¿ãbfloat16圢åŒã§èªã¿èŸŒã¿ãVRAM䜿çšéã倧å¹
ã«åæžããŸãã
+- `--optimizer_type adafactor`: Finetuningã§ã¯Adafactorã®äœ¿çšãæšå¥šãããŸãã
+- `--fused_backward_pass`: Adafactoräœ¿çšæã«ãbackward passäžã®VRAM䜿çšéãåæžããŸãã
+- `--mem_eff_save`: ãã§ãã¯ãã€ã³ãä¿åæã®ã¡ã€ã³ã¡ã¢ãªïŒRAMïŒäœ¿çšéãåæžããŸãã
+- `--blocks_to_swap`: ã¢ãã«ã®ãããã¯ãVRAMãšã¡ã€ã³ã¡ã¢ãªéã§ã¹ã¯ããããVRAM䜿çšéãåæžããŸããVRAMãå°ãªãå Žåã«æå¹ã§ãã
+- `--disable_numpy_memmap`: ã¢ãã«èªã¿èŸŒã¿æã®numpyã¡ã¢ãªãããã³ã°ãç¡å¹åããæšæºã®ãã¡ã€ã«èªã¿èŸŒã¿ã§èªã¿èŸŒã¿ãè¡ããŸããRAM䜿çšéã¯å¢å ããŸãããå Žåã«ãã£ãŠã¯ã¢ãã«ã®èªã¿èŸŒã¿ãé«éåãããŸãã
+- `--block_swap_optimizer_patch_params`: ãããã¯ã¹ã¯ããã³ã°ã®ããã®ãªããã£ãã€ã¶ãã©ã¡ãŒã¿ããããããããã®ãªãã·ã§ã³ã§ãã
+
+`--full_bf16`ã¯VRAM䜿çšéãçŽ30GBåæžããŸãããéã¿ãbfloat16ã§ä¿æããããããã¢ãã«ã®ç²ŸåºŠã«åœ±é¿ãäžããå¯èœæ§ããããŸãããªããã£ãã€ã¶ã®ç¶æ
ã¯float32ã§ä¿æãããŸãããŸããå¹ççãªåŠç¿ã®ããã«ãstochastic roundingããµããŒããããªããã£ãã€ã¶ãšã®äœµçšãæšå¥šãããŸãããã®ãªããžããªã§ã¯ã`adafactor`ãªããã£ãã€ã¶ã«`--fused_backward_pass`ãªãã·ã§ã³ã®çµã¿åããã§stochastic roundingããµããŒãããŠããŸãã
+
+`--block_swap_optimizer_patch_params`ãªãã·ã§ã³ã«ããããªããã£ãã€ã¶ã¹ãããäžã«åŸé
ããã©ã¡ãŒã¿ãšåãããã€ã¹ã«ç§»åããããããã¯ã¹ã¯ããã³ã°ã§åäœããããã«ãªããŸãããã®åé¿çã¯çŸåšAdamWãAdafactorãªã©ã§åäœããŸãããªããã£ãã€ã¶ã®å®è£
ã«äŸåãããããAdamW8bitããã®ä»ã®ãªããã£ãã€ã¶ã¯ãã®ãããã§ã¯åäœããŸããã
+
+`--mem_eff_save`ã䜿çšããå Žåã§ãã`--save_state`ã«ãããŠã¯ãªããã£ãã€ã¶ã®ç¶æ
ãä¿åããéã«åŸæ¥ã®ä¿åæ¹æ³ãäŸç¶ãšããŠäœ¿çšããããããçŽ20GBã®ã¡ã€ã³ã¡ã¢ãªãå¿
èŠã§ããããšã«æ³šæããŠãã ããã
+
+### æšå¥šèšå®
+
+æé©ãªèšå®ã¯ãŸã 調æ»äžã§ããäžèšã®æ§æã¯ãããŸã§äžäŸã§ãã®ã§ãå¿
èŠã«å¿ããŠèª¿æŽããŠãã ããããã£ãŒãããã¯ããåŸ
ã¡ããŠãããŸãã
+
+ååãªVRAMãããå Žåã¯ãã奜ã¿ã®ãªããã£ãã€ã¶ã䜿çšã§ããŸãã`--full_bf16`ã¯æšå¥šãããŸããã
+
+VRAMãéãããŠããç°å¢ïŒäŸïŒ48GB以äžïŒã®å Žåã¯ã次ã®ããããã®ãªãã·ã§ã³ãå©çšã§ããŸãã
+
+1. `--blocks_to_swap`ïŒ`--block_swap_optimizer_patch_params`ïŒäºææ§ã®ãããªããã£ãã€ã¶ã䜿çšããã
+2. `--blocks_to_swap`ïŒAdafactorïŒ`--fused_backward_pass`ã䜿çšããã
+3. `--full_bf16`ïŒAdafactorãªããã£ãã€ã¶ïŒ`--fused_backward_pass`ã䜿çšããã
+4. `--blocks_to_swap`ïŒ`--full_bf16`ïŒAdafactorãªããã£ãã€ã¶ïŒ`--fused_backward_pass`ã䜿çšããã
+
+VRAM䜿çšéã¯1.ãã4.ã®é ã§æžå°ããŸãïŒ4.ãæãå°ãªãïŒãåŠç¿ã«ãããæéã¯2.=3. < 4. < 1.ã®é ã§é·ããªããŸãïŒ1.ãæãé
ãïŒãæåŸ
ããã粟床ã¯ã1. > 2. > 3. = 4.ã®é ã«ãªããŸãïŒ1.ãæãé«ãïŒã
+
+ãµã³ãã«ã®èšå®ã¯ã3.ã®ãªãã·ã§ã³ã䜿çšããå Žåã®æšå¥šèšå®ã§ããVRAMãããã«å¶çŽãããŠããå Žåã¯ã4.ã®ãªãã·ã§ã³ã䜿çšããããšãã§ããŸãã`--lr_warmup_steps`ã¯çŽ10ãã100ã®éã®å€ã«èª¿æŽããŠãã ããã
+
+çŸæç¹ã§ã¯`--fused_backward_pass`ã¯gradient accumulationã«å¯Ÿå¿ããŠããŸããããŸãmax grad normãæ³å®éãã«åäœããªãå¯èœæ§ãããããã`--max_grad_norm 0`ãæå®ããããšãæšå¥šããŸãã
+
+ä»ã®ã¢ãã«ã§ã®çµéšåã§ã¯ãåŠç¿çã¯å€§å¹
ã«æžããå¿
èŠããããããããŸããã1e-6ãã1e-5ã®ç¯å²ã§è©ŠããŠã¿ããšè¯ãã§ãããã
+
+
+
+## Inference / æšè«
+
+Inference uses a dedicated script `zimage_generate_image.py`.
+
+```bash
+python src/musubi_tuner/zimage_generate_image.py \
+ --dit path/to/dit_model \
+ --vae path/to/vae_model \
+ --text_encoder path/to/text_encoder \
+ --prompt "A cat" \
+ --image_size 1024 1024 --infer_steps 25 \
+ --flow_shift 3.0 --guidance_scale 0.0 \
+ --attn_mode torch \
+ --save_path path/to/save/dir \
+ --seed 1234 --lora_multiplier 1.0 --lora_weight path/to/lora.safetensors
+```
+
+- Uses `zimage_generate_image.py`.
+- `--flow_shift` defaults to 3.0.
+- `--guidance_scale` defaults to 0.0 (no classifier-free guidance, for Turbo model). Specify a positive value to enable CFG (4.0 is the offcial default for Base model).
+- `--fp8` and `--fp8_scaled` options are available for DiT.
+- `--fp8_llm` option is available for Text Encoder.
+
+
+æ¥æ¬èª
+
+æšè«ã¯å°çšã®ã¹ã¯ãªãã`zimage_generate_image.py`ã䜿çšããŸãã
+
+ã³ãã³ãäŸã¯è±èªçãåç
§ããŠãã ããã
+
+- `zimage_generate_image.py`ã䜿çšããŸãã
+- `--flow_shift`ã®ããã©ã«ãã¯3.0ã§ãã
+- `--guidance_scale`ã®ããã©ã«ãã¯0.0ïŒClassifier-Free GuidanceãªããTurboã¢ãã«çšïŒã§ããæ£ã®å€ãæå®ãããšCFGãæå¹ã«ãªããŸãïŒBaseã¢ãã«ã®å
¬åŒããã©ã«ãã¯4.0ã§ãïŒã
+- `--fp8`ããã³`--fp8_scaled`ãªãã·ã§ã³ãDiTã§å©çšå¯èœã§ãã
+- `--fp8_llm`ãªãã·ã§ã³ãããã¹ããšã³ã³ãŒããŒã§å©çšå¯èœã§ãã
+- `--blocks_to_swap`ãªãã·ã§ã³ã§ãäžéšã®ãããã¯ãCPUã«ãªãããŒãã§ããŸãããªãããŒãå¯èœãªæå€§ãããã¯æ°ã¯28ã§ãã
+- LoRAã®èªã¿èŸŒã¿ãªãã·ã§ã³ïŒ`--lora_weight`ã`--lora_multiplier`ã`--include_patterns`ã`--exclude_patterns`ïŒãå©çšå¯èœã§ããLyCORISããµããŒããããŠããŸãã
+- `--save_merged_model`ãªãã·ã§ã³ã¯ãLoRAã®éã¿ãããŒãžããåŸã«DiTã¢ãã«ãä¿åããããã®ãªãã·ã§ã³ã§ãããããæå®ãããšæšè«ã¯ã¹ããããããŸãã
+
+
diff --git a/logs/ltx2_cache_gpu2.log b/logs/ltx2_cache_gpu2.log
new file mode 100644
index 0000000000000000000000000000000000000000..e3d6627844c74c011b3eae8e76ec668fa60cbf0f
--- /dev/null
+++ b/logs/ltx2_cache_gpu2.log
@@ -0,0 +1,31055 @@
+INFO:__main__:Load dataset config from train/ltxxx_gpu2.toml
+INFO:musubi_tuner.dataset.image_video_dataset:glob videos in dataset/ltxxx/videos2
+INFO:musubi_tuner.dataset.image_video_dataset:found 15337 videos
+INFO:musubi_tuner.dataset.config_utils:[Dataset 0]
+ dataset_type: video
+ resolution: (512, 512)
+ batch_size: 1
+ num_repeats: 1
+ video_loss_weight: None
+ audio_loss_weight: None
+ caption_extension: ".txt"
+ enable_bucket: True
+ bucket_no_upscale: False
+ separate_audio_buckets: False
+ cache_only: False
+ cache_directory: "dataset/ltxxx/cache2"
+ debug_dataset: False
+ video_directory: "dataset/ltxxx/videos2"
+ video_jsonl_file: "None"
+ control_directory: "None"
+ reference_directory: "None"
+ reference_audio_directory: "None"
+ reference_audio_cache_directory: "None"
+ target_frames: (241,)
+ frame_extraction: head
+ frame_stride: 1
+ frame_sample: 1
+ max_frames: 129
+ source_fps: 24.0
+ target_fps: 25.0
+ fp_latent_window_size: 9
+
+
+INFO:__main__:--vae not provided; using --ltx2_checkpoint as VAE checkpoint
+INFO:musubi_tuner.ltx_2.loader.single_gpu_model_builder:Materializing 3 unused buffer(s) as zeros: ['per_channel_statistics.mean-of-stds', 'per_channel_statistics.mean-of-stds_over_std-of-means', 'per_channel_statistics.channel']
+INFO:musubi_tuner.cache_latents:Encoding dataset [0]
+
0it [00:00, ?it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1it [00:07, 7.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2it [00:13, 6.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7it [00:14, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8it [00:19, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9it [00:20, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10it [00:21, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13it [00:21, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14it [00:24, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15it [00:24, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
16it [00:25, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
17it [00:26, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
19it [00:26, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
20it [00:28, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
21it [00:29, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
23it [00:29, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
24it [00:30, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
25it [00:31, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
26it [00:33, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
27it [00:34, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
28it [00:35, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
29it [00:36, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
30it [00:36, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
31it [00:40, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
32it [00:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
33it [00:41, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
34it [00:42, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
35it [00:43, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
37it [00:46, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
39it [00:47, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
42it [00:47, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
43it [00:50, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
44it [00:51, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
45it [00:51, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
46it [00:52, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
47it [00:52, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
48it [00:53, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
49it [00:53, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
50it [00:56, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
51it [00:56, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
52it [00:57, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
54it [00:58, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
56it [01:00, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
58it [01:01, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
59it [01:03, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
60it [01:04, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
61it [01:05, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
62it [01:06, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
63it [01:07, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
64it [01:08, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
65it [01:09, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
66it [01:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
68it [01:12, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
69it [01:14, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
70it [01:14, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
71it [01:15, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
72it [01:18, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
73it [01:20, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
74it [01:21, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
75it [01:21, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
76it [01:22, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
77it [01:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
79it [01:25, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
80it [01:27, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
82it [01:27, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
83it [01:30, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
84it [01:31, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
85it [01:31, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
86it [01:33, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
87it [01:34, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
88it [01:37, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
89it [01:38, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
92it [01:40, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
93it [01:41, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
94it [01:42, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
95it [01:42, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
96it [01:43, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
97it [01:44, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
98it [01:45, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
99it [01:46, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
100it [01:46, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
101it [01:47, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
102it [01:49, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
103it [01:50, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
104it [01:51, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
105it [01:51, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
106it [01:52, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
107it [01:54, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
108it [01:55, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
109it [01:56, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
110it [01:56, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
111it [01:56, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
112it [01:59, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
113it [01:59, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
114it [02:00, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
115it [02:00, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
116it [02:02, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
117it [02:02, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
118it [02:03, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
119it [02:03, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
120it [02:04, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
121it [02:05, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
122it [02:07, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
123it [02:08, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
124it [02:08, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
125it [02:09, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
126it [02:10, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
127it [02:11, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
128it [02:12, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
129it [02:13, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
130it [02:15, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
131it [02:16, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
132it [02:17, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
133it [02:17, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
134it [02:18, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
135it [02:19, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
137it [02:20, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
138it [02:21, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
139it [02:21, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
140it [02:22, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
141it [02:23, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
142it [02:24, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
144it [02:26, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
145it [02:27, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
148it [02:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
149it [02:29, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
150it [02:31, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
151it [02:32, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
152it [02:32, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
153it [02:33, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
154it [02:33, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
155it [02:34, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
156it [02:36, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
158it [02:36, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
159it [02:37, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
160it [02:38, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
161it [02:38, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
162it [02:40, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
164it [02:41, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
165it [02:41, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
166it [02:42, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
167it [02:42, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
168it [02:43, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
169it [02:44, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
170it [02:45, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
171it [02:46, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
172it [02:47, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
173it [02:49, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
175it [02:50, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
177it [02:51, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
179it [02:52, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
181it [02:53, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
182it [02:54, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
183it [02:55, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
184it [02:56, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
186it [02:58, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
188it [03:00, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
189it [03:01, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
190it [03:01, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
191it [03:02, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
192it [03:03, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
193it [03:04, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
194it [03:05, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
196it [03:06, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
197it [03:06, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
198it [03:07, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
199it [03:08, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
200it [03:09, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
201it [03:09, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
202it [03:10, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
203it [03:11, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
204it [03:12, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
205it [03:13, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
206it [03:14, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
207it [03:15, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
208it [03:16, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
209it [03:16, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
210it [03:17, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
211it [03:17, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
212it [03:19, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
213it [03:20, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
214it [03:21, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
215it [03:22, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
216it [03:22, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
218it [03:24, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
219it [03:24, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
220it [03:25, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
221it [03:26, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
222it [03:28, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
223it [03:28, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
224it [03:28, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
225it [03:29, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
226it [03:30, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
228it [03:31, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
229it [03:31, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
230it [03:32, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
232it [03:33, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
233it [03:37, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
234it [03:38, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
235it [03:39, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
237it [03:39, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
238it [03:42, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
239it [03:43, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
240it [03:44, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
241it [03:44, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
242it [03:45, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
243it [03:46, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
244it [03:47, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
245it [03:49, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
247it [03:50, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
249it [03:51, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
250it [03:52, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
251it [03:53, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
252it [03:54, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
253it [03:55, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
254it [03:55, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
255it [03:57, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
257it [03:57, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
258it [03:59, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
259it [03:59, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
260it [04:00, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
261it [04:01, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
262it [04:02, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
264it [04:04, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
265it [04:05, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
266it [04:06, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
267it [04:07, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
268it [04:07, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
269it [04:08, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
270it [04:09, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
271it [04:09, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
272it [04:11, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
274it [04:11, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
275it [04:11, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
276it [04:12, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
277it [04:13, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
278it [04:13, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
279it [04:14, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
280it [04:15, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
281it [04:16, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
282it [04:16, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
283it [04:18, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
284it [04:19, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
286it [04:21, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
288it [04:23, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
290it [04:24, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
293it [04:25, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
294it [04:27, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
295it [04:27, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
296it [04:28, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
297it [04:30, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
298it [04:30, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
299it [04:31, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
300it [04:31, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
301it [04:33, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
303it [04:33, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
305it [04:34, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
306it [04:35, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
307it [04:36, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
308it [04:37, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
309it [04:37, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
310it [04:39, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
311it [04:40, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
313it [04:41, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
316it [04:42, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
317it [04:43, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
318it [04:44, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
319it [04:44, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
320it [04:44, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
321it [04:46, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
322it [04:46, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
323it [04:48, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
324it [04:48, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
325it [04:49, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
326it [04:49, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
327it [04:51, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
328it [04:51, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
329it [04:51, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
330it [04:52, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
331it [04:53, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
332it [04:53, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
333it [04:56, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
334it [04:59, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
338it [05:00, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
340it [05:01, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
341it [05:03, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
342it [05:04, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
343it [05:05, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
344it [05:07, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
345it [05:08, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
346it [05:10, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
347it [05:11, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
348it [05:14, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
349it [05:15, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
352it [05:17, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
354it [05:17, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
355it [05:19, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
356it [05:19, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
357it [05:20, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
358it [05:21, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
359it [05:22, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
360it [05:23, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
361it [05:24, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
363it [05:26, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
365it [05:27, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
367it [05:28, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
368it [05:29, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
369it [05:30, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
370it [05:31, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
371it [05:32, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
372it [05:33, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
374it [05:34, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
377it [05:35, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
378it [05:36, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
379it [05:37, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
380it [05:38, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
381it [05:39, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
382it [05:40, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
383it [05:40, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
384it [05:40, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
385it [05:42, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
386it [05:42, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
387it [05:43, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
388it [05:44, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
389it [05:45, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
390it [05:46, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
391it [05:47, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
392it [05:48, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
394it [05:48, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
395it [05:49, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
397it [05:52, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
398it [05:52, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
399it [05:52, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
400it [05:53, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
401it [05:53, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
402it [05:54, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
403it [05:55, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
404it [05:57, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
405it [05:59, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
408it [06:00, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
409it [06:00, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
410it [06:01, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
411it [06:05, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
412it [06:05, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
413it [06:06, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
414it [06:07, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
415it [06:10, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
416it [06:11, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
418it [06:12, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
419it [06:13, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
420it [06:14, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
422it [06:15, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
423it [06:17, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
424it [06:18, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
425it [06:18, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
426it [06:19, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
429it [06:21, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
430it [06:21, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
431it [06:23, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
432it [06:24, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
433it [06:26, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
436it [06:26, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
437it [06:28, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
438it [06:29, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
439it [06:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
440it [06:33, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
442it [06:34, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
444it [06:35, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
445it [06:37, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
446it [06:37, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
447it [06:38, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
449it [06:39, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
450it [06:39, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
451it [06:42, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
452it [06:43, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
453it [06:44, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
454it [06:45, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
455it [06:45, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
456it [06:46, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
457it [06:48, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
458it [06:48, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
459it [06:49, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
461it [06:50, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
462it [06:51, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
463it [06:53, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
464it [06:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
467it [06:56, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
468it [06:57, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
469it [06:57, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
470it [07:00, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
471it [07:01, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
472it [07:01, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
474it [07:02, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
475it [07:03, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
476it [07:04, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
477it [07:05, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
479it [07:07, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
481it [07:08, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
482it [07:09, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
483it [07:09, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
484it [07:10, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
485it [07:12, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
486it [07:13, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
487it [07:14, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
488it [07:15, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
489it [07:18, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
490it [07:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
491it [07:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
492it [07:22, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
493it [07:22, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
494it [07:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
495it [07:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
496it [07:26, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
497it [07:27, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
498it [07:28, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
500it [07:28, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
501it [07:29, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
502it [07:29, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
503it [07:30, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
504it [07:31, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
505it [07:32, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
507it [07:33, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
509it [07:34, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
510it [07:35, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
511it [07:36, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
512it [07:37, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
513it [07:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
517it [07:40, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
518it [07:41, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
519it [07:44, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
520it [07:44, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
521it [07:45, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
523it [07:46, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
525it [07:47, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
526it [07:47, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
527it [07:48, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
528it [07:49, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
529it [07:50, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
531it [07:50, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
532it [07:51, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
533it [07:51, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
534it [07:53, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
535it [07:53, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
536it [07:55, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
537it [07:56, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
539it [07:56, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
540it [07:57, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
541it [07:58, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
542it [07:59, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
543it [08:01, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
544it [08:03, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
547it [08:03, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
548it [08:04, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
549it [08:06, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
550it [08:08, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
552it [08:10, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
554it [08:11, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
556it [08:13, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
559it [08:13, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
560it [08:14, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
561it [08:15, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
562it [08:18, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
563it [08:18, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
565it [08:20, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
568it [08:21, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
569it [08:21, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
570it [08:22, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
571it [08:23, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
572it [08:24, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
573it [08:24, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
574it [08:25, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
576it [08:25, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
577it [08:28, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
578it [08:29, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
579it [08:30, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
580it [08:31, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
581it [08:32, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
582it [08:33, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
584it [08:34, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
585it [08:36, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
586it [08:37, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
588it [08:38, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
589it [08:39, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
590it [08:39, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
591it [08:42, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
592it [08:42, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
593it [08:44, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
596it [08:44, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
597it [08:45, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
598it [08:46, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
599it [08:49, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
600it [08:50, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
601it [08:51, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
604it [08:52, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
605it [08:52, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
606it [08:53, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
607it [08:58, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
608it [09:00, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
610it [09:01, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
611it [09:02, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
612it [09:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
613it [09:05, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
614it [09:07, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
615it [09:09, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
617it [09:10, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
619it [09:11, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
620it [09:12, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
621it [09:14, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
622it [09:16, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
623it [09:18, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
624it [09:19, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
626it [09:20, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
627it [09:21, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
628it [09:22, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
629it [09:23, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
631it [09:24, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
632it [09:26, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
633it [09:26, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
634it [09:28, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
636it [09:29, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
638it [09:30, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
639it [09:31, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
640it [09:34, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
642it [09:35, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
644it [09:36, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
645it [09:38, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
646it [09:38, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
647it [09:39, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
648it [09:40, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
649it [09:41, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
650it [09:42, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
651it [09:43, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
652it [09:44, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
653it [09:46, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
654it [09:46, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
655it [09:47, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
656it [09:49, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
657it [09:50, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
658it [09:50, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
659it [09:51, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
660it [09:52, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
661it [09:53, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
662it [09:53, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
663it [09:55, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
665it [09:56, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
666it [09:57, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
668it [09:58, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
669it [09:59, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
670it [09:59, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
671it [10:00, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
672it [10:01, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
674it [10:02, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
676it [10:03, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
677it [10:03, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
678it [10:04, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
679it [10:05, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
680it [10:05, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
681it [10:07, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
683it [10:08, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
684it [10:08, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
685it [10:09, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
686it [10:09, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
687it [10:10, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
688it [10:12, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
689it [10:13, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
691it [10:15, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
693it [10:15, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
694it [10:17, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
696it [10:17, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
697it [10:18, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
698it [10:18, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
699it [10:19, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
700it [10:20, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
701it [10:22, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
702it [10:23, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
703it [10:23, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
705it [10:24, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
706it [10:25, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
707it [10:25, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
708it [10:28, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
709it [10:29, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
710it [10:29, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
711it [10:30, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
712it [10:31, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
714it [10:32, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
715it [10:33, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
716it [10:35, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
717it [10:36, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
720it [10:37, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
722it [10:38, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
723it [10:41, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
724it [10:42, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
725it [10:44, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
726it [10:46, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
727it [10:49, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
728it [10:50, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
730it [10:53, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
731it [10:55, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
733it [10:58, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
737it [11:00, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
739it [11:01, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
740it [11:03, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
743it [11:04, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
745it [11:05, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
746it [11:07, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
747it [11:08, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
749it [11:09, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
751it [11:10, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
753it [11:12, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
755it [11:12, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
756it [11:13, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
757it [11:14, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
758it [11:14, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
759it [11:15, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
760it [11:17, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
761it [11:17, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
762it [11:18, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
763it [11:19, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
764it [11:20, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
765it [11:23, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
766it [11:25, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
767it [11:27, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
769it [11:28, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
770it [11:29, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
771it [11:29, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
772it [11:30, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
773it [11:31, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
774it [11:32, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
775it [11:33, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
776it [11:35, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
777it [11:38, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
780it [11:41, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
783it [11:42, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
786it [11:43, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
787it [11:43, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
788it [11:43, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
789it [11:46, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
790it [11:47, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
791it [11:49, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
794it [11:50, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
795it [11:50, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
796it [11:52, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
798it [11:54, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
800it [11:55, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
803it [11:56, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
804it [11:58, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
806it [11:59, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
807it [12:01, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
809it [12:02, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
811it [12:04, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
812it [12:06, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
813it [12:07, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
814it [12:08, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
815it [12:09, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
816it [12:11, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
817it [12:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
818it [12:14, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
820it [12:15, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
822it [12:15, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
823it [12:19, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
825it [12:19, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
826it [12:20, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
828it [12:21, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
829it [12:22, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
830it [12:23, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
831it [12:24, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
832it [12:26, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
835it [12:27, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
837it [12:29, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
838it [12:31, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
840it [12:34, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
843it [12:35, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
846it [12:37, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
847it [12:39, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
849it [12:41, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
852it [12:42, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
854it [12:43, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
855it [12:44, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
856it [12:45, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
857it [12:46, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
859it [12:47, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
861it [12:47, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
862it [12:48, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
863it [12:49, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
864it [12:50, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
865it [12:52, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
868it [12:53, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
870it [12:53, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
871it [12:55, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
872it [12:56, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
875it [12:58, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
877it [12:58, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
878it [13:00, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
879it [13:01, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
881it [13:01, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
883it [13:02, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
884it [13:04, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
885it [13:07, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
887it [13:10, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
891it [13:12, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
893it [13:13, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
894it [13:15, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
897it [13:15, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
898it [13:16, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
899it [13:17, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
900it [13:18, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
901it [13:19, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
902it [13:20, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
904it [13:20, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
905it [13:21, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
906it [13:22, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
907it [13:22, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
908it [13:25, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
909it [13:26, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
911it [13:27, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
913it [13:28, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
914it [13:29, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
915it [13:30, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
916it [13:32, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
917it [13:33, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
919it [13:34, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
921it [13:35, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
922it [13:37, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
923it [13:38, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
924it [13:40, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
925it [13:41, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
926it [13:42, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
928it [13:42, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
929it [13:43, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
930it [13:46, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
931it [13:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
934it [13:49, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
936it [13:50, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
937it [13:53, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
938it [13:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
941it [13:56, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
943it [13:57, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
944it [13:57, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
945it [13:59, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
947it [13:59, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
948it [14:01, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
949it [14:01, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
950it [14:04, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
951it [14:04, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
952it [14:06, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
954it [14:09, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
957it [14:10, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
958it [14:11, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
959it [14:12, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
960it [14:14, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
961it [14:16, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
963it [14:19, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
967it [14:21, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
969it [14:23, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
970it [14:26, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
973it [14:28, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
975it [14:28, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
976it [14:29, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
977it [14:30, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
978it [14:30, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
979it [14:31, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
981it [14:32, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
982it [14:32, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
983it [14:33, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
984it [14:34, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
985it [14:35, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
987it [14:38, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
990it [14:40, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
993it [14:43, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
994it [14:45, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
996it [14:48, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
998it [14:49, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
999it [14:51, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1000it [14:53, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1002it [14:54, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1005it [14:55, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1006it [14:56, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1007it [14:56, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1008it [14:57, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1009it [14:58, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1010it [15:00, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1011it [15:00, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1012it [15:01, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1013it [15:08, 2.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1014it [15:10, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1016it [15:13, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1019it [15:15, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1022it [15:16, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1023it [15:17, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1024it [15:19, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1025it [15:22, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1028it [15:25, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1031it [15:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1034it [15:30, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1035it [15:31, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1036it [15:33, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1037it [15:34, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1038it [15:36, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1039it [15:39, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1042it [15:42, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1045it [15:46, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1048it [15:49, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1050it [15:51, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1054it [15:54, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1056it [15:55, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1057it [15:58, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1060it [16:00, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1063it [16:03, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1066it [16:05, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1068it [16:06, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1069it [16:06, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1070it [16:07, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1071it [16:08, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1072it [16:09, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1074it [16:10, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1075it [16:10, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1076it [16:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1077it [16:17, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1078it [16:18, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1079it [16:21, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1081it [16:22, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1082it [16:23, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1083it [16:24, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1084it [16:26, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1086it [16:29, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1089it [16:32, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1092it [16:33, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1095it [16:35, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1096it [16:37, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1098it [16:39, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1099it [16:40, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1100it [16:41, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1101it [16:42, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1102it [16:43, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1103it [16:45, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1104it [16:46, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1105it [16:46, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1106it [16:47, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1107it [16:47, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1108it [16:49, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1109it [16:50, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1110it [16:50, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1111it [16:52, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1112it [16:52, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1113it [16:54, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1116it [16:55, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1117it [16:56, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1118it [16:57, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1119it [16:59, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1121it [16:59, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1122it [17:00, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1123it [17:01, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1125it [17:02, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1126it [17:02, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1127it [17:03, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1128it [17:03, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1129it [17:05, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1130it [17:06, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1131it [17:07, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1133it [17:08, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1135it [17:10, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1137it [17:11, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1139it [17:11, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1140it [17:12, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1141it [17:13, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1142it [17:14, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1143it [17:16, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1145it [17:17, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1147it [17:20, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1149it [17:25, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1152it [17:30, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1155it [17:32, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1158it [17:33, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1159it [17:34, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1161it [17:35, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1162it [17:40, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1165it [17:45, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1168it [17:49, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1171it [17:53, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1174it [17:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1177it [18:00, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1180it [18:04, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1183it [18:06, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1184it [18:07, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1185it [18:11, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1188it [18:15, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1191it [18:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1194it [18:22, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1197it [18:23, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1198it [18:25, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1200it [18:27, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1201it [18:29, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1202it [18:31, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1203it [18:32, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1204it [18:33, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1205it [18:35, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1206it [18:36, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1207it [18:38, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1208it [18:42, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1211it [18:44, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1214it [18:47, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1217it [18:50, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1220it [18:52, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1222it [18:53, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1223it [18:57, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1226it [19:00, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1229it [19:04, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1230it [19:08, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1231it [19:12, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1233it [19:13, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1234it [19:14, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1235it [19:18, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1236it [19:22, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1240it [19:24, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1242it [19:26, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1243it [19:29, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1245it [19:33, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1248it [19:36, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1251it [19:39, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1254it [19:41, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1256it [19:42, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1257it [19:45, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1259it [19:47, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1261it [19:47, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1262it [19:48, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1263it [19:50, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1265it [19:51, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1266it [19:52, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1267it [19:54, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1269it [19:57, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1272it [19:59, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1274it [20:00, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1275it [20:01, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1276it [20:03, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1278it [20:06, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1282it [20:08, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1283it [20:09, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1284it [20:13, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1288it [20:16, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1290it [20:17, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1291it [20:18, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1292it [20:20, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1294it [20:23, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1297it [20:25, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1299it [20:27, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1300it [20:29, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1301it [20:30, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1302it [20:32, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1303it [20:34, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1304it [20:36, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1305it [20:38, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1307it [20:41, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1310it [20:45, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1313it [20:48, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1316it [20:50, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1318it [20:52, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1320it [20:56, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1323it [20:57, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1325it [20:58, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1326it [21:03, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1329it [21:05, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1331it [21:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1334it [21:11, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1335it [21:12, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1336it [21:14, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1337it [21:15, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1338it [21:18, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1340it [21:22, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1343it [21:24, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1345it [21:26, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1346it [21:28, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1348it [21:30, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1350it [21:31, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1352it [21:32, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1353it [21:36, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1354it [21:36, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1355it [21:38, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1357it [21:42, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1359it [21:44, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1362it [21:45, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1364it [21:46, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1365it [21:48, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1366it [21:52, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1369it [21:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1372it [21:58, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1375it [22:00, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1377it [22:01, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1378it [22:02, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1379it [22:08, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1380it [22:09, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1381it [22:11, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1382it [22:12, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1383it [22:15, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1384it [22:16, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1385it [22:20, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1388it [22:24, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1391it [22:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1394it [22:29, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1396it [22:32, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1399it [22:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1402it [22:40, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1405it [22:43, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1408it [22:46, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1411it [22:49, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1414it [22:52, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1417it [22:54, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1419it [22:55, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1420it [22:59, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1423it [23:02, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1426it [23:04, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1428it [23:05, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1429it [23:07, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1431it [23:12, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1434it [23:15, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1437it [23:19, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1439it [23:24, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1443it [23:27, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1445it [23:29, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1447it [23:31, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1448it [23:33, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1450it [23:40, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1454it [23:44, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1456it [23:48, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1459it [23:51, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1461it [23:53, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1463it [23:56, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1465it [23:58, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1467it [24:04, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1471it [24:07, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1473it [24:08, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1474it [24:11, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1477it [24:14, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1480it [24:18, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1483it [24:21, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1486it [24:23, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1488it [24:24, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1489it [24:25, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1490it [24:27, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1492it [24:29, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1495it [24:30, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1496it [24:32, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1497it [24:38, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1501it [24:39, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1503it [24:43, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1504it [24:49, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1508it [24:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1510it [24:52, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1511it [24:57, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1514it [25:01, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1517it [25:05, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1520it [25:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1523it [25:11, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1526it [25:15, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1529it [25:18, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1532it [25:20, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1534it [25:23, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1537it [25:25, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1539it [25:26, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1540it [25:27, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1541it [25:28, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1543it [25:30, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1546it [25:33, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1549it [25:34, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1550it [25:36, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1551it [25:39, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1553it [25:44, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1557it [25:47, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1559it [25:49, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1561it [25:52, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1563it [25:54, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1565it [25:55, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1566it [25:58, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1567it [25:58, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1568it [25:59, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1569it [26:02, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1570it [26:04, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1572it [26:08, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1576it [26:11, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1578it [26:14, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1579it [26:16, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1581it [26:19, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1584it [26:24, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1587it [26:26, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1590it [26:29, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1593it [26:32, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1596it [26:34, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1598it [26:35, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1599it [26:36, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1600it [26:38, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1601it [26:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1604it [26:44, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1607it [26:47, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1610it [26:49, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1613it [26:53, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1616it [26:54, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1617it [26:56, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1619it [26:59, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1622it [27:02, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1625it [27:05, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1628it [27:08, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1631it [27:10, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1634it [27:13, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1635it [27:14, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1637it [27:18, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1640it [27:21, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1643it [27:24, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1646it [27:27, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1649it [27:30, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1652it [27:35, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1654it [27:39, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1657it [27:44, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1660it [27:49, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1663it [27:53, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1666it [27:56, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1668it [27:59, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1669it [28:01, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1670it [28:04, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1671it [28:07, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1673it [28:14, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1677it [28:17, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1679it [28:21, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1681it [28:26, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1685it [28:29, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1687it [28:32, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1690it [28:36, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1692it [28:40, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1695it [28:44, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1698it [28:49, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1701it [28:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1704it [28:55, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1707it [28:55, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1708it [28:58, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1709it [29:01, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1711it [29:05, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1715it [29:08, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1717it [29:11, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1719it [29:15, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1723it [29:17, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1725it [29:22, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1727it [29:28, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1731it [29:31, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1733it [29:35, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1734it [29:41, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1739it [29:43, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1740it [29:46, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1741it [29:50, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1746it [29:51, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1747it [29:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1748it [29:55, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1749it [29:57, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1750it [30:00, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1752it [30:03, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1755it [30:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1758it [30:09, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1761it [30:13, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1764it [30:16, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1766it [30:19, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1767it [30:21, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1768it [30:23, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1769it [30:29, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1773it [30:33, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1775it [30:36, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1777it [30:42, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1781it [30:46, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1783it [30:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1784it [30:52, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1787it [30:56, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1790it [31:00, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1793it [31:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1796it [31:05, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1797it [31:08, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1799it [31:14, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1803it [31:16, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1805it [31:22, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1809it [31:25, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1811it [31:28, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1813it [31:30, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1815it [31:35, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1818it [31:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1821it [31:42, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1823it [31:50, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1827it [31:53, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1829it [31:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1830it [31:59, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1833it [32:04, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1836it [32:08, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1839it [32:12, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1842it [32:16, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1845it [32:20, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1848it [32:22, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1851it [32:25, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1854it [32:28, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1857it [32:30, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1860it [32:32, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1862it [32:33, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1863it [32:34, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1864it [32:35, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1866it [32:37, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1868it [32:39, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1870it [32:40, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1871it [32:43, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1873it [32:46, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1876it [32:48, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1879it [32:49, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1880it [32:50, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1881it [32:50, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1882it [32:54, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1883it [32:55, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1884it [32:57, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1885it [32:59, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1887it [33:01, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1889it [33:03, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1890it [33:04, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1891it [33:05, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1892it [33:11, 2.29s/it]
1894it [33:12, 1.62s/it]
1895it [33:14, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1896it [33:18, 2.31s/it]
1897it [33:19, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1898it [33:27, 3.44s/it]
1899it [33:28, 2.86s/it]
1900it [33:29, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1901it [33:33, 2.92s/it]
1902it [33:35, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1903it [33:40, 3.20s/it]
1904it [33:41, 2.64s/it]
1905it [33:42, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1906it [33:47, 2.99s/it]
1907it [33:48, 2.49s/it]
1908it [33:50, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1909it [33:55, 2.94s/it]
1910it [33:56, 2.45s/it]
1911it [33:57, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1912it [34:02, 2.94s/it]
1913it [34:03, 2.45s/it]
1914it [34:05, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1915it [34:10, 2.99s/it]
1916it [34:11, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1917it [34:14, 2.64s/it]
1918it [34:15, 2.23s/it]
1919it [34:17, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1920it [34:19, 2.19s/it]
1921it [34:21, 1.92s/it]
1922it [34:22, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1923it [34:26, 2.37s/it]
1924it [34:27, 2.04s/it]
1925it [34:28, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1926it [34:32, 2.49s/it]
1927it [34:34, 2.13s/it]
1928it [34:35, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1929it [34:39, 2.53s/it]
1930it [34:40, 2.16s/it]
1931it [34:42, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1932it [34:46, 2.70s/it]
1933it [34:48, 2.29s/it]
1934it [34:49, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1935it [34:52, 2.33s/it]
1936it [34:53, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1937it [34:57, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1938it [35:00, 2.71s/it]
1939it [35:01, 2.29s/it]
1940it [35:03, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1941it [35:06, 2.54s/it]
1942it [35:08, 2.18s/it]
1943it [35:09, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1944it [35:13, 2.37s/it]
1945it [35:14, 2.04s/it]
1946it [35:15, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1947it [35:18, 2.24s/it]
1948it [35:20, 1.96s/it]
1949it [35:21, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1950it [35:24, 2.08s/it]
1951it [35:25, 1.84s/it]
1952it [35:26, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1953it [35:31, 2.49s/it]
1954it [35:32, 2.13s/it]
1955it [35:33, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1956it [35:37, 2.31s/it]
1957it [35:38, 2.00s/it]
1958it [35:39, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1959it [35:42, 2.11s/it]
1960it [35:43, 1.87s/it]
1961it [35:45, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1962it [35:48, 2.07s/it]
1963it [35:49, 1.83s/it]
1964it [35:50, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1965it [35:53, 2.09s/it]
1966it [35:55, 1.86s/it]
1967it [35:56, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1968it [35:59, 2.05s/it]
1969it [36:00, 1.82s/it]
1970it [36:01, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1971it [36:04, 1.95s/it]
1972it [36:05, 1.75s/it]
1973it [36:07, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1974it [36:09, 1.96s/it]
1975it [36:11, 1.75s/it]
1976it [36:12, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1977it [36:14, 1.89s/it]
1978it [36:16, 1.71s/it]
1979it [36:17, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1980it [36:20, 1.94s/it]
1981it [36:21, 1.74s/it]
1982it [36:22, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1983it [36:25, 1.97s/it]
1984it [36:26, 1.77s/it]
1985it [36:28, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1986it [36:31, 1.98s/it]
1987it [36:32, 1.78s/it]
1988it [36:33, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1989it [36:36, 1.97s/it]
1990it [36:37, 1.77s/it]
1991it [36:39, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1992it [36:41, 1.97s/it]
1993it [36:43, 1.78s/it]
1994it [36:44, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1995it [36:47, 2.06s/it]
1996it [36:48, 1.83s/it]
1997it [36:50, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1998it [36:52, 1.96s/it]
1999it [36:53, 1.75s/it]
2000it [36:55, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2001it [36:58, 2.18s/it]
2002it [37:00, 1.92s/it]
2003it [37:01, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2004it [37:07, 3.18s/it]
2005it [37:09, 2.61s/it]
2006it [37:10, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2007it [37:15, 3.08s/it]
2008it [37:16, 2.56s/it]
2009it [37:18, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2010it [37:22, 2.93s/it]
2011it [37:24, 2.43s/it]
2012it [37:25, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2013it [37:29, 2.65s/it]
2014it [37:30, 2.24s/it]
2015it [37:32, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2016it [37:35, 2.43s/it]
2017it [37:36, 2.09s/it]
2018it [37:38, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2019it [37:39, 1.76s/it]
2020it [37:40, 1.63s/it]
2021it [37:42, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2022it [37:43, 1.51s/it]
2023it [37:45, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2024it [37:47, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2025it [37:48, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2026it [37:49, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2027it [37:51, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2028it [37:52, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2029it [37:54, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2030it [37:55, 1.45s/it]
2031it [37:56, 1.40s/it]
2032it [37:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2033it [38:18, 6.95s/it]
2034it [38:19, 5.26s/it]
2035it [38:20, 4.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2036it [38:25, 4.30s/it]
2037it [38:26, 3.40s/it]
2038it [38:28, 2.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2039it [38:35, 4.21s/it]
2040it [38:37, 3.34s/it]
2041it [38:38, 2.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2042it [38:43, 3.27s/it]
2043it [38:44, 2.68s/it]
2044it [38:45, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2045it [38:48, 2.46s/it]
2046it [38:49, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2047it [38:53, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2048it [38:56, 2.82s/it]
2049it [38:58, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2050it [39:01, 2.76s/it]
2051it [39:03, 2.32s/it]
2052it [39:04, 2.01s/it]
2053it [39:05, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2054it [39:08, 1.96s/it]
2055it [39:09, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2056it [39:13, 2.39s/it]
2057it [39:14, 2.07s/it]
2058it [39:15, 1.84s/it]
2059it [39:17, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2060it [39:19, 1.93s/it]
2061it [39:20, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2062it [39:23, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2063it [39:25, 2.02s/it]
2064it [39:26, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2065it [39:31, 2.56s/it]
2066it [39:32, 2.18s/it]
2067it [39:33, 1.91s/it]
2068it [39:34, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2069it [39:38, 2.27s/it]
2070it [39:39, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2071it [39:46, 3.31s/it]
2072it [39:47, 2.70s/it]
2073it [39:48, 2.27s/it]
2074it [39:50, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2075it [39:55, 3.08s/it]
2076it [39:56, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2077it [40:06, 4.75s/it]
2078it [40:08, 3.71s/it]
2079it [40:09, 2.99s/it]
2080it [40:10, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2081it [40:15, 3.07s/it]
2082it [40:16, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2083it [40:24, 4.13s/it]
2084it [40:25, 3.30s/it]
2085it [40:27, 2.70s/it]
2086it [40:28, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2087it [40:33, 3.10s/it]
2088it [40:34, 2.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2089it [40:40, 3.62s/it]
2090it [40:42, 2.92s/it]
2091it [40:43, 2.43s/it]
2092it [40:44, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2093it [40:48, 2.65s/it]
2094it [40:49, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2095it [40:57, 3.97s/it]
2096it [40:59, 3.18s/it]
2097it [41:00, 2.62s/it]
2098it [41:01, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2099it [41:06, 2.95s/it]
2100it [41:07, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2101it [41:14, 3.62s/it]
2102it [41:15, 2.93s/it]
2103it [41:16, 2.47s/it]
2104it [41:18, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2105it [41:22, 2.88s/it]
2106it [41:24, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2107it [41:30, 3.66s/it]
2108it [41:31, 2.96s/it]
2109it [41:33, 2.46s/it]
2110it [41:34, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2111it [41:37, 2.33s/it]
2112it [41:38, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2113it [41:45, 3.49s/it]
2114it [41:46, 2.84s/it]
2115it [41:48, 2.38s/it]
2116it [41:49, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2117it [41:53, 2.72s/it]
2118it [41:55, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2119it [42:01, 3.66s/it]
2120it [42:03, 2.95s/it]
2121it [42:04, 2.45s/it]
2122it [42:05, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2123it [42:10, 2.83s/it]
2124it [42:11, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2125it [42:18, 3.70s/it]
2126it [42:19, 2.99s/it]
2127it [42:21, 2.49s/it]
2128it [42:22, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2129it [42:27, 2.92s/it]
2130it [42:28, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2131it [42:35, 3.92s/it]
2132it [42:37, 3.14s/it]
2133it [42:38, 2.59s/it]
2134it [42:39, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2135it [42:44, 2.89s/it]
2136it [42:45, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2137it [42:52, 3.70s/it]
2138it [42:53, 2.98s/it]
2139it [42:54, 2.48s/it]
2140it [42:56, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2141it [43:00, 2.84s/it]
2142it [43:02, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2143it [43:08, 3.74s/it]
2144it [43:10, 3.02s/it]
2145it [43:11, 2.51s/it]
2146it [43:12, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2147it [43:17, 2.79s/it]
2148it [43:18, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2149it [43:25, 3.73s/it]
2150it [43:26, 2.99s/it]
2151it [43:28, 2.48s/it]
2152it [43:29, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2153it [43:34, 3.02s/it]
2154it [43:35, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2155it [43:44, 4.24s/it]
2156it [43:45, 3.36s/it]
2157it [43:46, 2.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2158it [43:52, 3.79s/it]
2159it [43:54, 3.04s/it]
2160it [43:55, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2161it [44:01, 3.53s/it]
2162it [44:02, 2.86s/it]
2163it [44:03, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2164it [44:09, 3.23s/it]
2165it [44:10, 2.65s/it]
2166it [44:11, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2167it [44:16, 2.94s/it]
2168it [44:17, 2.45s/it]
2169it [44:18, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2170it [44:24, 3.16s/it]
2171it [44:25, 2.60s/it]
2172it [44:27, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2173it [44:32, 3.33s/it]
2174it [44:34, 2.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2175it [44:39, 3.61s/it]
2176it [44:41, 2.92s/it]
2177it [44:42, 2.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2178it [44:48, 3.55s/it]
2179it [44:50, 2.88s/it]
2180it [44:51, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2181it [44:56, 3.34s/it]
2182it [44:58, 2.73s/it]
2183it [44:59, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2184it [45:04, 3.01s/it]
2185it [45:05, 2.49s/it]
2186it [45:06, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2187it [45:12, 3.33s/it]
2188it [45:14, 2.72s/it]
2189it [45:15, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2190it [45:20, 3.27s/it]
2191it [45:22, 2.68s/it]
2192it [45:23, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2193it [45:28, 3.05s/it]
2194it [45:29, 2.52s/it]
2195it [45:31, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2196it [45:36, 3.12s/it]
2197it [45:37, 2.57s/it]
2198it [45:39, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2199it [45:44, 3.27s/it]
2200it [45:46, 2.68s/it]
2201it [45:47, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2202it [45:53, 3.47s/it]
2203it [45:54, 2.82s/it]
2204it [45:56, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2205it [46:01, 3.29s/it]
2206it [46:03, 2.70s/it]
2207it [46:04, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2208it [46:08, 2.80s/it]
2209it [46:09, 2.35s/it]
2210it [46:10, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2211it [46:16, 2.97s/it]
2212it [46:17, 2.47s/it]
2213it [46:18, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2214it [46:24, 3.22s/it]
2215it [46:25, 2.65s/it]
2216it [46:27, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2217it [46:31, 2.85s/it]
2218it [46:32, 2.39s/it]
2219it [46:33, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2220it [46:39, 3.06s/it]
2221it [46:40, 2.53s/it]
2222it [46:41, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2223it [46:47, 3.11s/it]
2224it [46:48, 2.57s/it]
2225it [46:49, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2226it [46:55, 3.16s/it]
2227it [46:56, 2.60s/it]
2228it [46:57, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2229it [47:04, 3.50s/it]
2230it [47:05, 2.83s/it]
2231it [47:07, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2232it [47:11, 2.88s/it]
2233it [47:12, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2234it [47:17, 3.32s/it]
2235it [47:19, 2.72s/it]
2236it [47:20, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2237it [47:25, 3.22s/it]
2238it [47:27, 2.64s/it]
2239it [47:28, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2240it [47:33, 3.01s/it]
2241it [47:34, 2.49s/it]
2242it [47:35, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2243it [47:40, 3.03s/it]
2244it [47:42, 2.51s/it]
2245it [47:43, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2246it [47:47, 2.82s/it]
2247it [47:49, 2.36s/it]
2248it [47:50, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2249it [47:56, 3.19s/it]
2250it [47:57, 2.63s/it]
2251it [47:59, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2252it [48:04, 3.16s/it]
2253it [48:05, 2.60s/it]
2254it [48:06, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2255it [48:11, 2.91s/it]
2256it [48:12, 2.43s/it]
2257it [48:14, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2258it [48:19, 3.11s/it]
2259it [48:20, 2.58s/it]
2260it [48:22, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2261it [48:27, 3.01s/it]
2262it [48:28, 2.50s/it]
2263it [48:29, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2264it [48:36, 3.48s/it]
2265it [48:37, 2.82s/it]
2266it [48:38, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2267it [48:44, 3.38s/it]
2268it [48:45, 2.75s/it]
2269it [48:47, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2270it [48:51, 2.91s/it]
2271it [48:52, 2.44s/it]
2272it [48:54, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2273it [49:00, 3.23s/it]
2274it [49:01, 2.64s/it]
2275it [49:02, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2276it [49:08, 3.31s/it]
2277it [49:09, 2.70s/it]
2278it [49:11, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2279it [49:15, 3.08s/it]
2280it [49:17, 2.54s/it]
2281it [49:18, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2282it [49:23, 3.10s/it]
2283it [49:25, 2.57s/it]
2284it [49:26, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2285it [49:31, 3.05s/it]
2286it [49:32, 2.53s/it]
2287it [49:34, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2288it [49:39, 3.06s/it]
2289it [49:40, 2.53s/it]
2290it [49:41, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2291it [49:47, 3.21s/it]
2292it [49:48, 2.64s/it]
2293it [49:50, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2294it [49:55, 3.27s/it]
2295it [49:57, 2.67s/it]
2296it [49:58, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2297it [50:04, 3.28s/it]
2298it [50:05, 2.68s/it]
2299it [50:06, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2300it [50:11, 3.15s/it]
2301it [50:13, 2.59s/it]
2302it [50:14, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2303it [50:20, 3.27s/it]
2304it [50:21, 2.68s/it]
2305it [50:22, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2306it [50:26, 2.61s/it]
2307it [50:27, 2.21s/it]
2308it [50:28, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2309it [50:34, 2.96s/it]
2310it [50:35, 2.46s/it]
2311it [50:36, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2312it [50:41, 2.92s/it]
2313it [50:42, 2.43s/it]
2314it [50:44, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2315it [50:49, 3.03s/it]
2316it [50:50, 2.51s/it]
2317it [50:51, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2318it [50:56, 3.00s/it]
2319it [50:58, 2.49s/it]
2320it [50:59, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2321it [51:04, 2.96s/it]
2322it [51:05, 2.47s/it]
2323it [51:07, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2324it [51:12, 3.07s/it]
2325it [51:13, 2.55s/it]
2326it [51:15, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2327it [51:19, 3.01s/it]
2328it [51:21, 2.49s/it]
2329it [51:22, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2330it [51:27, 3.02s/it]
2331it [51:28, 2.51s/it]
2332it [51:30, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2333it [51:34, 2.81s/it]
2334it [51:35, 2.36s/it]
2335it [51:37, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2336it [51:43, 3.17s/it]
2337it [51:44, 2.62s/it]
2338it [51:45, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2339it [51:50, 3.13s/it]
2340it [51:52, 2.58s/it]
2341it [51:53, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2342it [51:59, 3.33s/it]
2343it [52:00, 2.73s/it]
2344it [52:02, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2345it [52:06, 3.02s/it]
2346it [52:08, 2.50s/it]
2347it [52:09, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2348it [52:13, 2.84s/it]
2349it [52:15, 2.38s/it]
2350it [52:16, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2351it [52:21, 2.89s/it]
2352it [52:22, 2.41s/it]
2353it [52:23, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2354it [52:28, 2.96s/it]
2355it [52:30, 2.46s/it]
2356it [52:31, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2357it [52:37, 3.14s/it]
2358it [52:38, 2.59s/it]
2359it [52:39, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2360it [52:43, 2.83s/it]
2361it [52:45, 2.37s/it]
2362it [52:46, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2363it [52:52, 3.17s/it]
2364it [52:53, 2.61s/it]
2365it [52:54, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2366it [52:58, 2.72s/it]
2367it [53:00, 2.29s/it]
2368it [53:01, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2369it [53:02, 1.85s/it]
2370it [53:04, 1.68s/it]
2371it [53:05, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2372it [53:07, 1.54s/it]
2373it [53:08, 1.47s/it]
2374it [53:09, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2375it [53:11, 1.43s/it]
2376it [53:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2377it [53:13, 1.41s/it]
2378it [53:15, 1.38s/it]
2379it [53:16, 1.35s/it]
2380it [53:17, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2381it [53:19, 1.36s/it]
2382it [53:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2383it [53:23, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2384it [53:28, 2.85s/it]
2385it [53:29, 2.38s/it]
2386it [53:31, 2.05s/it]
2387it [53:32, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2388it [53:35, 2.34s/it]
2389it [53:37, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2390it [53:41, 2.80s/it]
2391it [53:43, 2.35s/it]
2392it [53:44, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2393it [53:48, 2.59s/it]
2394it [53:49, 2.20s/it]
2395it [53:50, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2396it [53:55, 2.79s/it]
2397it [53:57, 2.34s/it]
2398it [53:58, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2399it [54:03, 2.82s/it]
2400it [54:04, 2.36s/it]
2401it [54:05, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2402it [54:10, 2.77s/it]
2403it [54:11, 2.34s/it]
2404it [54:12, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2405it [54:16, 2.70s/it]
2406it [54:18, 2.28s/it]
2407it [54:19, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2408it [54:23, 2.64s/it]
2409it [54:25, 2.24s/it]
2410it [54:26, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2411it [54:30, 2.61s/it]
2412it [54:31, 2.23s/it]
2413it [54:33, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2414it [54:37, 2.75s/it]
2415it [54:39, 2.31s/it]
2416it [54:40, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2417it [54:45, 2.84s/it]
2418it [54:46, 2.37s/it]
2419it [54:47, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2420it [54:51, 2.60s/it]
2421it [54:52, 2.21s/it]
2422it [54:54, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2423it [54:59, 2.86s/it]
2424it [55:00, 2.39s/it]
2425it [55:01, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2426it [55:06, 2.75s/it]
2427it [55:07, 2.33s/it]
2428it [55:08, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2429it [55:14, 2.98s/it]
2430it [55:15, 2.47s/it]
2431it [55:16, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2432it [55:20, 2.51s/it]
2433it [55:21, 2.16s/it]
2434it [55:22, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2435it [55:27, 2.81s/it]
2436it [55:28, 2.37s/it]
2437it [55:30, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2438it [55:34, 2.75s/it]
2439it [55:35, 2.31s/it]
2440it [55:37, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2441it [55:41, 2.75s/it]
2442it [55:42, 2.31s/it]
2443it [55:44, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2444it [55:48, 2.67s/it]
2445it [55:49, 2.26s/it]
2446it [55:51, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2447it [55:55, 2.81s/it]
2448it [55:57, 2.36s/it]
2449it [55:58, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2450it [55:59, 1.87s/it]
2451it [56:01, 1.70s/it]
2452it [56:02, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2453it [56:04, 1.55s/it]
2454it [56:05, 1.47s/it]
2455it [56:06, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2456it [56:08, 1.44s/it]
2457it [56:09, 1.40s/it]
2458it [56:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2459it [56:12, 1.40s/it]
2460it [56:13, 1.37s/it]
2461it [56:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2462it [56:16, 1.40s/it]
2463it [56:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2464it [56:19, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2465it [56:22, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2466it [56:23, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2467it [56:25, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2468it [56:26, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2469it [56:28, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2470it [56:31, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2471it [56:34, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2472it [56:40, 3.41s/it]
2473it [56:41, 2.79s/it]
2474it [56:42, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2475it [56:44, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2476it [56:45, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2477it [56:50, 2.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2478it [56:51, 2.33s/it]
2479it [56:53, 2.05s/it]
2480it [56:54, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2481it [56:56, 1.75s/it]
2482it [56:57, 1.62s/it]
2483it [56:58, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2484it [57:00, 1.52s/it]
2485it [57:01, 1.44s/it]
2486it [57:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2487it [57:04, 1.42s/it]
2488it [57:05, 1.39s/it]
2489it [57:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2490it [57:08, 1.39s/it]
2491it [57:09, 1.37s/it]
2492it [57:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2493it [57:15, 2.17s/it]
2494it [57:16, 1.91s/it]
2495it [57:17, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2496it [57:22, 2.66s/it]
2497it [57:23, 2.26s/it]
2498it [57:25, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2499it [57:28, 2.54s/it]
2500it [57:30, 2.17s/it]
2501it [57:31, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2502it [57:35, 2.38s/it]
2503it [57:36, 2.06s/it]
2504it [57:37, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2505it [57:42, 2.61s/it]
2506it [57:43, 2.21s/it]
2507it [57:44, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2508it [57:47, 2.34s/it]
2509it [57:49, 2.05s/it]
2510it [57:50, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2511it [57:55, 2.68s/it]
2512it [57:56, 2.28s/it]
2513it [57:57, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2514it [58:05, 3.81s/it]
2515it [58:07, 3.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2516it [58:13, 4.08s/it]
2517it [58:15, 3.25s/it]
2518it [58:16, 2.66s/it]
2519it [58:17, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2520it [58:20, 2.50s/it]
2521it [58:22, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2522it [58:26, 2.80s/it]
2523it [58:27, 2.35s/it]
2524it [58:28, 2.03s/it]
2525it [58:30, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2526it [58:34, 2.59s/it]
2527it [58:35, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2528it [58:41, 3.17s/it]
2529it [58:42, 2.61s/it]
2530it [58:44, 2.21s/it]
2531it [58:45, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2532it [58:49, 2.51s/it]
2533it [58:50, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2534it [58:56, 3.25s/it]
2535it [58:57, 2.66s/it]
2536it [58:58, 2.25s/it]
2537it [59:00, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2538it [59:03, 2.52s/it]
2539it [59:05, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2540it [59:10, 3.02s/it]
2541it [59:11, 2.50s/it]
2542it [59:12, 2.13s/it]
2543it [59:14, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2544it [59:17, 2.36s/it]
2545it [59:18, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2546it [59:24, 2.99s/it]
2547it [59:25, 2.49s/it]
2548it [59:26, 2.14s/it]
2549it [59:28, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2550it [59:31, 2.35s/it]
2551it [59:32, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2552it [59:38, 3.05s/it]
2553it [59:39, 2.52s/it]
2554it [59:40, 2.16s/it]
2555it [59:42, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2556it [59:45, 2.44s/it]
2557it [59:47, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2558it [59:51, 2.91s/it]
2559it [59:53, 2.43s/it]
2560it [59:54, 2.09s/it]
2561it [59:55, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2562it [59:59, 2.31s/it]
2563it [1:00:00, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2564it [1:00:05, 2.99s/it]
2565it [1:00:07, 2.48s/it]
2566it [1:00:08, 2.13s/it]
2567it [1:00:09, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2568it [1:00:13, 2.57s/it]
2569it [1:00:15, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2570it [1:00:20, 3.02s/it]
2571it [1:00:21, 2.50s/it]
2572it [1:00:22, 2.13s/it]
2573it [1:00:23, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2574it [1:00:27, 2.27s/it]
2575it [1:00:28, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2576it [1:00:36, 3.86s/it]
2577it [1:00:38, 3.09s/it]
2578it [1:00:39, 2.56s/it]
2579it [1:00:40, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2580it [1:00:43, 2.49s/it]
2581it [1:00:45, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2582it [1:00:51, 3.34s/it]
2583it [1:00:52, 2.73s/it]
2584it [1:00:53, 2.30s/it]
2585it [1:00:55, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2586it [1:00:56, 1.87s/it]
2587it [1:00:58, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2588it [1:01:00, 1.80s/it]
2589it [1:01:01, 1.65s/it]
2590it [1:01:02, 1.54s/it]
2591it [1:01:03, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2592it [1:01:05, 1.45s/it]
2593it [1:01:06, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2594it [1:01:08, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2595it [1:01:09, 1.48s/it]
2596it [1:01:11, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2597it [1:01:12, 1.44s/it]
2598it [1:01:13, 1.41s/it]
2599it [1:01:15, 1.37s/it]
2600it [1:01:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2601it [1:01:17, 1.37s/it]
2602it [1:01:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2603it [1:01:22, 2.03s/it]
2604it [1:01:24, 1.81s/it]
2605it [1:01:25, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2606it [1:01:29, 2.41s/it]
2607it [1:01:30, 2.08s/it]
2608it [1:01:32, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2609it [1:01:36, 2.44s/it]
2610it [1:01:37, 2.09s/it]
2611it [1:01:38, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2612it [1:01:44, 3.09s/it]
2613it [1:01:45, 2.55s/it]
2614it [1:01:47, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2615it [1:01:52, 3.10s/it]
2616it [1:01:53, 2.57s/it]
2617it [1:01:55, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2618it [1:01:56, 2.03s/it]
2619it [1:01:58, 1.81s/it]
2620it [1:01:59, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2621it [1:02:00, 1.60s/it]
2622it [1:02:02, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2623it [1:02:06, 2.27s/it]
2624it [1:02:07, 1.98s/it]
2625it [1:02:08, 1.77s/it]
2626it [1:02:10, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2627it [1:02:11, 1.59s/it]
2628it [1:02:12, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2629it [1:02:15, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2630it [1:02:16, 1.66s/it]
2631it [1:02:17, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2632it [1:02:19, 1.52s/it]
2633it [1:02:20, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2634it [1:02:22, 1.45s/it]
2635it [1:02:23, 1.41s/it]
2636it [1:02:24, 1.40s/it]
2637it [1:02:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2638it [1:02:27, 1.38s/it]
2639it [1:02:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2640it [1:02:30, 1.39s/it]
2641it [1:02:31, 1.37s/it]
2642it [1:02:32, 1.36s/it]
2643it [1:02:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2644it [1:02:35, 1.37s/it]
2645it [1:02:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2646it [1:02:41, 2.34s/it]
2647it [1:02:42, 2.03s/it]
2648it [1:02:44, 1.81s/it]
2649it [1:02:45, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2650it [1:02:46, 1.61s/it]
2651it [1:02:48, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2652it [1:02:49, 1.54s/it]
2653it [1:02:51, 1.46s/it]
2654it [1:02:52, 1.41s/it]
2655it [1:02:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2656it [1:02:55, 1.41s/it]
2657it [1:02:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2658it [1:02:58, 1.43s/it]
2659it [1:02:59, 1.39s/it]
2660it [1:03:00, 1.36s/it]
2661it [1:03:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2662it [1:03:03, 1.36s/it]
2663it [1:03:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2664it [1:03:06, 1.37s/it]
2665it [1:03:07, 1.35s/it]
2666it [1:03:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2667it [1:03:10, 1.46s/it]
2668it [1:03:11, 1.41s/it]
2669it [1:03:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2670it [1:03:14, 1.40s/it]
2671it [1:03:15, 1.37s/it]
2672it [1:03:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2673it [1:03:18, 1.39s/it]
2674it [1:03:19, 1.36s/it]
2675it [1:03:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2676it [1:03:22, 1.39s/it]
2677it [1:03:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2678it [1:03:25, 1.39s/it]
2679it [1:03:26, 1.36s/it]
2680it [1:03:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2681it [1:03:29, 1.39s/it]
2682it [1:03:30, 1.37s/it]
2683it [1:03:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2684it [1:03:33, 1.40s/it]
2685it [1:03:35, 1.37s/it]
2686it [1:03:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2687it [1:03:37, 1.39s/it]
2688it [1:03:39, 1.37s/it]
2689it [1:03:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2690it [1:03:41, 1.40s/it]
2691it [1:03:43, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2692it [1:03:49, 2.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2693it [1:03:51, 2.51s/it]
2694it [1:03:52, 2.16s/it]
2695it [1:03:54, 1.90s/it]
2696it [1:03:55, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2697it [1:03:57, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2698it [1:03:58, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2699it [1:04:00, 1.65s/it]
2700it [1:04:01, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2701it [1:04:03, 1.56s/it]
2702it [1:04:04, 1.48s/it]
2703it [1:04:05, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2704it [1:04:07, 1.42s/it]
2705it [1:04:08, 1.39s/it]
2706it [1:04:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2707it [1:04:15, 2.64s/it]
2708it [1:04:16, 2.25s/it]
2709it [1:04:17, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2710it [1:04:19, 1.82s/it]
2711it [1:04:20, 1.67s/it]
2712it [1:04:22, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2713it [1:04:23, 1.55s/it]
2714it [1:04:24, 1.48s/it]
2715it [1:04:26, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2716it [1:04:27, 1.45s/it]
2717it [1:04:29, 1.41s/it]
2718it [1:04:30, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2719it [1:04:32, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2720it [1:04:37, 2.48s/it]
2721it [1:04:38, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2722it [1:04:55, 6.68s/it]
2723it [1:04:57, 5.08s/it]
2724it [1:04:58, 3.95s/it]
2725it [1:04:59, 3.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2726it [1:05:04, 3.63s/it]
2727it [1:05:05, 2.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2728it [1:05:09, 3.26s/it]
2729it [1:05:11, 2.67s/it]
2730it [1:05:12, 2.27s/it]
2731it [1:05:13, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2732it [1:05:17, 2.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2733it [1:05:22, 3.20s/it]
2734it [1:05:23, 2.63s/it]
2735it [1:05:24, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2736it [1:05:27, 2.21s/it]
2737it [1:05:28, 1.93s/it]
2738it [1:05:29, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2739it [1:05:35, 3.04s/it]
2740it [1:05:37, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2741it [1:05:42, 3.47s/it]
2742it [1:05:44, 2.82s/it]
2743it [1:05:45, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2744it [1:05:50, 3.31s/it]
2745it [1:05:52, 2.70s/it]
2746it [1:05:53, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2747it [1:05:58, 3.16s/it]
2748it [1:06:00, 2.62s/it]
2749it [1:06:01, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2750it [1:06:07, 3.33s/it]
2751it [1:06:08, 2.72s/it]
2752it [1:06:09, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2753it [1:06:14, 3.05s/it]
2754it [1:06:15, 2.52s/it]
2755it [1:06:17, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2756it [1:06:22, 2.94s/it]
2757it [1:06:23, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2758it [1:06:24, 2.21s/it]
2759it [1:06:26, 1.94s/it]
2760it [1:06:27, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2761it [1:06:29, 1.65s/it]
2762it [1:06:30, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2763it [1:06:31, 1.51s/it]
2764it [1:06:33, 1.44s/it]
2765it [1:06:34, 1.40s/it]
2766it [1:06:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2767it [1:06:37, 1.38s/it]
2768it [1:06:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2769it [1:06:39, 1.40s/it]
2770it [1:06:41, 1.37s/it]
2771it [1:06:42, 1.34s/it]
2772it [1:06:43, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2773it [1:06:45, 1.35s/it]
2774it [1:06:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2775it [1:06:50, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2776it [1:06:51, 1.90s/it]
2777it [1:06:53, 1.72s/it]
2778it [1:06:54, 1.59s/it]
2779it [1:06:55, 1.50s/it]
2780it [1:06:56, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2781it [1:06:59, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2782it [1:07:02, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2783it [1:07:09, 3.72s/it]
2784it [1:07:11, 2.99s/it]
2785it [1:07:12, 2.48s/it]
2786it [1:07:13, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2787it [1:07:18, 2.94s/it]
2788it [1:07:19, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2789it [1:07:26, 3.76s/it]
2790it [1:07:28, 3.03s/it]
2791it [1:07:29, 2.51s/it]
2792it [1:07:30, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2793it [1:07:34, 2.76s/it]
2794it [1:07:36, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2795it [1:07:44, 4.00s/it]
2796it [1:07:45, 3.20s/it]
2797it [1:07:46, 2.63s/it]
2798it [1:07:47, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2799it [1:07:52, 2.77s/it]
2800it [1:07:53, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2801it [1:08:00, 3.66s/it]
2802it [1:08:01, 2.96s/it]
2803it [1:08:02, 2.45s/it]
2804it [1:08:03, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2805it [1:08:06, 2.18s/it]
2806it [1:08:07, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2807it [1:08:15, 3.56s/it]
2808it [1:08:16, 2.89s/it]
2809it [1:08:17, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2810it [1:08:22, 3.08s/it]
2811it [1:08:23, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2812it [1:08:30, 3.96s/it]
2813it [1:08:32, 3.17s/it]
2814it [1:08:33, 2.62s/it]
2815it [1:08:34, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2816it [1:08:39, 2.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2817it [1:08:44, 3.48s/it]
2818it [1:08:45, 2.83s/it]
2819it [1:08:46, 2.38s/it]
2820it [1:08:48, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2821it [1:08:52, 2.70s/it]
2822it [1:08:53, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2823it [1:09:02, 4.35s/it]
2824it [1:09:04, 3.45s/it]
2825it [1:09:05, 2.80s/it]
2826it [1:09:06, 2.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2827it [1:09:10, 2.92s/it]
2828it [1:09:12, 2.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2829it [1:09:17, 3.35s/it]
2830it [1:09:19, 2.73s/it]
2831it [1:09:20, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2832it [1:09:21, 2.04s/it]
2833it [1:09:23, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2834it [1:09:29, 3.05s/it]
2835it [1:09:30, 2.52s/it]
2836it [1:09:31, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2837it [1:09:33, 1.95s/it]
2838it [1:09:34, 1.77s/it]
2839it [1:09:35, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2840it [1:09:41, 2.92s/it]
2841it [1:09:42, 2.43s/it]
2842it [1:09:44, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2843it [1:09:48, 2.76s/it]
2844it [1:09:49, 2.33s/it]
2845it [1:09:51, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2846it [1:09:57, 3.17s/it]
2847it [1:09:58, 2.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2848it [1:09:59, 2.29s/it]
2849it [1:10:01, 2.00s/it]
2850it [1:10:02, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2851it [1:10:07, 2.79s/it]
2852it [1:10:08, 2.34s/it]
2853it [1:10:10, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2854it [1:10:11, 1.87s/it]
2855it [1:10:13, 1.70s/it]
2856it [1:10:14, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2857it [1:10:15, 1.52s/it]
2858it [1:10:17, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2859it [1:10:22, 2.75s/it]
2860it [1:10:24, 2.31s/it]
2861it [1:10:25, 2.01s/it]
2862it [1:10:26, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2863it [1:10:30, 2.53s/it]
2864it [1:10:32, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2865it [1:10:37, 3.24s/it]
2866it [1:10:39, 2.65s/it]
2867it [1:10:40, 2.24s/it]
2868it [1:10:41, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2869it [1:10:46, 2.90s/it]
2870it [1:10:48, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2871it [1:10:53, 3.38s/it]
2872it [1:10:55, 2.75s/it]
2873it [1:10:56, 2.31s/it]
2874it [1:10:57, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2875it [1:11:02, 2.94s/it]
2876it [1:11:04, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2877it [1:11:10, 3.71s/it]
2878it [1:11:12, 2.98s/it]
2879it [1:11:13, 2.48s/it]
2880it [1:11:14, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2881it [1:11:19, 2.85s/it]
2882it [1:11:20, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2883it [1:11:27, 3.88s/it]
2884it [1:11:29, 3.11s/it]
2885it [1:11:30, 2.57s/it]
2886it [1:11:31, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2887it [1:11:36, 3.04s/it]
2888it [1:11:38, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2889it [1:11:45, 3.86s/it]
2890it [1:11:46, 3.09s/it]
2891it [1:11:47, 2.56s/it]
2892it [1:11:49, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2893it [1:11:54, 3.02s/it]
2894it [1:11:55, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2895it [1:12:01, 3.56s/it]
2896it [1:12:02, 2.89s/it]
2897it [1:12:03, 2.42s/it]
2898it [1:12:05, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2899it [1:12:09, 2.60s/it]
2900it [1:12:10, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2901it [1:12:16, 3.48s/it]
2902it [1:12:18, 2.83s/it]
2903it [1:12:19, 2.37s/it]
2904it [1:12:20, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2905it [1:12:24, 2.65s/it]
2906it [1:12:26, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2907it [1:12:33, 3.69s/it]
2908it [1:12:34, 2.98s/it]
2909it [1:12:35, 2.49s/it]
2910it [1:12:37, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2911it [1:12:41, 2.77s/it]
2912it [1:12:42, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2913it [1:12:49, 3.76s/it]
2914it [1:12:51, 3.02s/it]
2915it [1:12:52, 2.50s/it]
2916it [1:12:53, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2917it [1:12:58, 2.84s/it]
2918it [1:12:59, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2919it [1:13:05, 3.43s/it]
2920it [1:13:06, 2.79s/it]
2921it [1:13:07, 2.35s/it]
2922it [1:13:09, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2923it [1:13:13, 2.76s/it]
2924it [1:13:15, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2925it [1:13:22, 3.76s/it]
2926it [1:13:23, 3.03s/it]
2927it [1:13:24, 2.51s/it]
2928it [1:13:26, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2929it [1:13:30, 2.76s/it]
2930it [1:13:31, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2931it [1:13:37, 3.37s/it]
2932it [1:13:38, 2.75s/it]
2933it [1:13:40, 2.32s/it]
2934it [1:13:41, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2935it [1:13:45, 2.71s/it]
2936it [1:13:46, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2937it [1:13:53, 3.50s/it]
2938it [1:13:54, 2.85s/it]
2939it [1:13:55, 2.39s/it]
2940it [1:13:57, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2941it [1:14:00, 2.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2942it [1:14:04, 2.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2943it [1:14:11, 4.18s/it]
2944it [1:14:12, 3.32s/it]
2945it [1:14:14, 2.72s/it]
2946it [1:14:15, 2.30s/it]
2947it [1:14:16, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2948it [1:14:19, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2949it [1:14:27, 3.93s/it]
2950it [1:14:28, 3.14s/it]
2951it [1:14:30, 2.59s/it]
2952it [1:14:31, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2953it [1:14:35, 2.76s/it]
2954it [1:14:36, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2955it [1:14:43, 3.77s/it]
2956it [1:14:45, 3.03s/it]
2957it [1:14:46, 2.52s/it]
2958it [1:14:47, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2959it [1:14:51, 2.54s/it]
2960it [1:14:52, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2961it [1:14:59, 3.43s/it]
2962it [1:15:00, 2.80s/it]
2963it [1:15:01, 2.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2964it [1:15:06, 3.09s/it]
2965it [1:15:07, 2.56s/it]
2966it [1:15:09, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2967it [1:15:16, 3.89s/it]
2968it [1:15:18, 3.12s/it]
2969it [1:15:19, 2.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2970it [1:15:24, 3.34s/it]
2971it [1:15:26, 2.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2972it [1:15:32, 3.81s/it]
2973it [1:15:33, 3.06s/it]
2974it [1:15:35, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2975it [1:15:40, 3.29s/it]
2976it [1:15:41, 2.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2977it [1:15:48, 3.92s/it]
2978it [1:15:49, 3.14s/it]
2979it [1:15:50, 2.58s/it]
2980it [1:15:52, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2981it [1:15:57, 3.05s/it]
2982it [1:15:58, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2983it [1:16:07, 4.36s/it]
2984it [1:16:08, 3.45s/it]
2985it [1:16:09, 2.82s/it]
2986it [1:16:11, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2987it [1:16:15, 2.98s/it]
2988it [1:16:16, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2989it [1:16:23, 3.81s/it]
2990it [1:16:24, 3.06s/it]
2991it [1:16:26, 2.53s/it]
2992it [1:16:27, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2993it [1:16:32, 2.92s/it]
2994it [1:16:33, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2995it [1:16:41, 3.97s/it]
2996it [1:16:42, 3.17s/it]
2997it [1:16:43, 2.60s/it]
2998it [1:16:45, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2999it [1:16:50, 3.05s/it]
3000it [1:16:51, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3001it [1:16:59, 4.16s/it]
3002it [1:17:00, 3.30s/it]
3003it [1:17:01, 2.70s/it]
3004it [1:17:03, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3005it [1:17:08, 3.07s/it]
3006it [1:17:09, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3007it [1:17:16, 3.97s/it]
3008it [1:17:17, 3.17s/it]
3009it [1:17:19, 2.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3010it [1:17:23, 3.06s/it]
3011it [1:17:24, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3012it [1:17:30, 3.60s/it]
3013it [1:17:32, 2.91s/it]
3014it [1:17:33, 2.43s/it]
3015it [1:17:34, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3016it [1:17:38, 2.61s/it]
3017it [1:17:39, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3018it [1:17:45, 3.33s/it]
3019it [1:17:47, 2.72s/it]
3020it [1:17:48, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3021it [1:17:55, 3.81s/it]
3022it [1:17:56, 3.05s/it]
3023it [1:17:58, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3024it [1:18:03, 3.48s/it]
3025it [1:18:05, 2.83s/it]
3026it [1:18:06, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3027it [1:18:12, 3.41s/it]
3028it [1:18:13, 2.77s/it]
3029it [1:18:14, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3030it [1:18:19, 3.11s/it]
3031it [1:18:21, 2.56s/it]
3032it [1:18:22, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3033it [1:18:26, 2.77s/it]
3034it [1:18:27, 2.33s/it]
3035it [1:18:29, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3036it [1:18:34, 2.85s/it]
3037it [1:18:35, 2.38s/it]
3038it [1:18:36, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3039it [1:18:40, 2.66s/it]
3040it [1:18:42, 2.25s/it]
3041it [1:18:43, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3042it [1:18:49, 3.24s/it]
3043it [1:18:50, 2.66s/it]
3044it [1:18:52, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3045it [1:18:57, 3.30s/it]
3046it [1:18:59, 2.69s/it]
3047it [1:19:00, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3048it [1:19:03, 2.53s/it]
3049it [1:19:04, 2.17s/it]
3050it [1:19:06, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3051it [1:19:11, 3.04s/it]
3052it [1:19:13, 2.52s/it]
3053it [1:19:14, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3054it [1:19:21, 3.54s/it]
3055it [1:19:22, 2.89s/it]
3056it [1:19:23, 2.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3057it [1:19:29, 3.33s/it]
3058it [1:19:30, 2.74s/it]
3059it [1:19:32, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3060it [1:19:37, 3.17s/it]
3061it [1:19:38, 2.61s/it]
3062it [1:19:39, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3063it [1:19:41, 1.99s/it]
3064it [1:19:42, 1.78s/it]
3065it [1:19:43, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3066it [1:19:45, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3067it [1:19:46, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3068it [1:19:48, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3069it [1:19:49, 1.50s/it]
3070it [1:19:51, 1.44s/it]
3071it [1:19:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3072it [1:19:58, 2.75s/it]
3073it [1:19:59, 2.32s/it]
3074it [1:20:00, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3075it [1:20:06, 3.25s/it]
3076it [1:20:08, 2.68s/it]
3077it [1:20:09, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3078it [1:20:15, 3.37s/it]
3079it [1:20:16, 2.76s/it]
3080it [1:20:18, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3081it [1:20:22, 3.02s/it]
3082it [1:20:24, 2.50s/it]
3083it [1:20:25, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3084it [1:20:31, 3.37s/it]
3085it [1:20:32, 2.75s/it]
3086it [1:20:34, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3087it [1:20:39, 3.09s/it]
3088it [1:20:40, 2.55s/it]
3089it [1:20:41, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3090it [1:20:47, 3.14s/it]
3091it [1:20:48, 2.59s/it]
3092it [1:20:49, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3093it [1:20:55, 3.13s/it]
3094it [1:20:56, 2.57s/it]
3095it [1:20:57, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3096it [1:21:03, 3.27s/it]
3097it [1:21:04, 2.68s/it]
3098it [1:21:05, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3099it [1:21:10, 2.88s/it]
3100it [1:21:11, 2.41s/it]
3101it [1:21:12, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3102it [1:21:16, 2.66s/it]
3103it [1:21:18, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3104it [1:21:24, 3.42s/it]
3105it [1:21:25, 2.79s/it]
3106it [1:21:27, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3107it [1:21:31, 3.06s/it]
3108it [1:21:33, 2.53s/it]
3109it [1:21:34, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3110it [1:21:38, 2.88s/it]
3111it [1:21:40, 2.41s/it]
3112it [1:21:41, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3113it [1:21:46, 2.85s/it]
3114it [1:21:47, 2.39s/it]
3115it [1:21:48, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3116it [1:21:53, 2.73s/it]
3117it [1:21:54, 2.30s/it]
3118it [1:21:55, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3119it [1:22:00, 2.97s/it]
3120it [1:22:02, 2.47s/it]
3121it [1:22:03, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3122it [1:22:08, 3.05s/it]
3123it [1:22:10, 2.53s/it]
3124it [1:22:11, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3125it [1:22:16, 2.92s/it]
3126it [1:22:17, 2.43s/it]
3127it [1:22:18, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3128it [1:22:23, 2.92s/it]
3129it [1:22:24, 2.44s/it]
3130it [1:22:26, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3131it [1:22:31, 2.94s/it]
3132it [1:22:32, 2.47s/it]
3133it [1:22:33, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3134it [1:22:39, 3.16s/it]
3135it [1:22:40, 2.61s/it]
3136it [1:22:41, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3137it [1:22:47, 3.18s/it]
3138it [1:22:48, 2.62s/it]
3139it [1:22:50, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3140it [1:22:55, 3.13s/it]
3141it [1:22:56, 2.59s/it]
3142it [1:22:57, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3143it [1:23:03, 3.31s/it]
3144it [1:23:05, 2.72s/it]
3145it [1:23:06, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3146it [1:23:11, 3.09s/it]
3147it [1:23:12, 2.55s/it]
3148it [1:23:13, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3149it [1:23:19, 3.13s/it]
3150it [1:23:20, 2.58s/it]
3151it [1:23:21, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3152it [1:23:26, 2.82s/it]
3153it [1:23:27, 2.37s/it]
3154it [1:23:28, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3155it [1:23:35, 3.39s/it]
3156it [1:23:36, 2.76s/it]
3157it [1:23:37, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3158it [1:23:42, 3.01s/it]
3159it [1:23:43, 2.50s/it]
3160it [1:23:45, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3161it [1:23:49, 2.95s/it]
3162it [1:23:51, 2.46s/it]
3163it [1:23:52, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3164it [1:23:57, 2.98s/it]
3165it [1:23:58, 2.47s/it]
3166it [1:24:00, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3167it [1:24:06, 3.35s/it]
3168it [1:24:07, 2.73s/it]
3169it [1:24:08, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3170it [1:24:13, 3.05s/it]
3171it [1:24:15, 2.53s/it]
3172it [1:24:16, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3173it [1:24:22, 3.36s/it]
3174it [1:24:23, 2.75s/it]
3175it [1:24:25, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3176it [1:24:31, 3.40s/it]
3177it [1:24:32, 2.77s/it]
3178it [1:24:33, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3179it [1:24:39, 3.28s/it]
3180it [1:24:40, 2.68s/it]
3181it [1:24:41, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3182it [1:24:46, 2.95s/it]
3183it [1:24:47, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3184it [1:24:52, 3.30s/it]
3185it [1:24:54, 2.70s/it]
3186it [1:24:55, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3187it [1:25:01, 3.32s/it]
3188it [1:25:02, 2.71s/it]
3189it [1:25:03, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3190it [1:25:09, 3.24s/it]
3191it [1:25:10, 2.65s/it]
3192it [1:25:11, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3193it [1:25:16, 3.04s/it]
3194it [1:25:18, 2.53s/it]
3195it [1:25:19, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3196it [1:25:24, 3.16s/it]
3197it [1:25:26, 2.62s/it]
3198it [1:25:27, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3199it [1:25:32, 3.05s/it]
3200it [1:25:33, 2.52s/it]
3201it [1:25:35, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3202it [1:25:41, 3.28s/it]
3203it [1:25:42, 2.69s/it]
3204it [1:25:43, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3205it [1:25:48, 3.12s/it]
3206it [1:25:50, 2.57s/it]
3207it [1:25:51, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3208it [1:25:57, 3.30s/it]
3209it [1:25:58, 2.71s/it]
3210it [1:25:59, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3211it [1:26:01, 2.05s/it]
3212it [1:26:02, 1.83s/it]
3213it [1:26:03, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3214it [1:26:10, 3.08s/it]
3215it [1:26:11, 2.54s/it]
3216it [1:26:12, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3217it [1:26:18, 3.12s/it]
3218it [1:26:19, 2.58s/it]
3219it [1:26:20, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3220it [1:26:27, 3.48s/it]
3221it [1:26:28, 2.82s/it]
3222it [1:26:29, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3223it [1:26:34, 3.15s/it]
3224it [1:26:36, 2.60s/it]
3225it [1:26:37, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3226it [1:26:43, 3.23s/it]
3227it [1:26:44, 2.65s/it]
3228it [1:26:45, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3229it [1:26:52, 3.67s/it]
3230it [1:26:54, 2.98s/it]
3231it [1:26:55, 2.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3232it [1:26:59, 3.01s/it]
3233it [1:27:01, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3234it [1:27:07, 3.63s/it]
3235it [1:27:08, 2.94s/it]
3236it [1:27:09, 2.45s/it]
3237it [1:27:11, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3238it [1:27:14, 2.33s/it]
3239it [1:27:15, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3240it [1:27:23, 3.85s/it]
3241it [1:27:24, 3.10s/it]
3242it [1:27:26, 2.57s/it]
3243it [1:27:27, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3244it [1:27:31, 2.71s/it]
3245it [1:27:32, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3246it [1:27:38, 3.31s/it]
3247it [1:27:39, 2.71s/it]
3248it [1:27:41, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3249it [1:27:45, 2.87s/it]
3250it [1:27:46, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3251it [1:27:52, 3.34s/it]
3252it [1:27:53, 2.74s/it]
3253it [1:27:54, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3254it [1:27:58, 2.75s/it]
3255it [1:27:59, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3256it [1:28:05, 3.35s/it]
3257it [1:28:06, 2.73s/it]
3258it [1:28:08, 2.30s/it]
3259it [1:28:09, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3260it [1:28:13, 2.63s/it]
3261it [1:28:14, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3262it [1:28:21, 3.44s/it]
3263it [1:28:22, 2.80s/it]
3264it [1:28:23, 2.35s/it]
3265it [1:28:25, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3266it [1:28:29, 2.68s/it]
3267it [1:28:30, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3268it [1:28:37, 3.71s/it]
3269it [1:28:39, 2.99s/it]
3270it [1:28:40, 2.48s/it]
3271it [1:28:41, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3272it [1:28:45, 2.57s/it]
3273it [1:28:46, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3274it [1:28:53, 3.64s/it]
3275it [1:28:54, 2.95s/it]
3276it [1:28:56, 2.45s/it]
3277it [1:28:57, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3278it [1:29:01, 2.63s/it]
3279it [1:29:02, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3280it [1:29:08, 3.42s/it]
3281it [1:29:10, 2.80s/it]
3282it [1:29:11, 2.35s/it]
3283it [1:29:12, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3284it [1:29:16, 2.42s/it]
3285it [1:29:17, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3286it [1:29:23, 3.29s/it]
3287it [1:29:24, 2.69s/it]
3288it [1:29:26, 2.28s/it]
3289it [1:29:27, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3290it [1:29:30, 2.32s/it]
3291it [1:29:31, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3292it [1:29:38, 3.55s/it]
3293it [1:29:40, 2.87s/it]
3294it [1:29:41, 2.40s/it]
3295it [1:29:42, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3296it [1:29:46, 2.49s/it]
3297it [1:29:47, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3298it [1:29:55, 3.82s/it]
3299it [1:29:56, 3.06s/it]
3300it [1:29:57, 2.53s/it]
3301it [1:29:59, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3302it [1:30:03, 2.81s/it]
3303it [1:30:04, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3304it [1:30:10, 3.49s/it]
3305it [1:30:12, 2.83s/it]
3306it [1:30:13, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3307it [1:30:17, 2.92s/it]
3308it [1:30:19, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3309it [1:30:28, 4.40s/it]
3310it [1:30:29, 3.47s/it]
3311it [1:30:30, 2.82s/it]
3312it [1:30:31, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3313it [1:30:37, 3.28s/it]
3314it [1:30:38, 2.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3315it [1:30:44, 3.76s/it]
3316it [1:30:46, 3.03s/it]
3317it [1:30:47, 2.52s/it]
3318it [1:30:48, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3319it [1:30:53, 2.74s/it]
3320it [1:30:54, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3321it [1:31:01, 3.68s/it]
3322it [1:31:02, 2.98s/it]
3323it [1:31:03, 2.48s/it]
3324it [1:31:05, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3325it [1:31:09, 2.66s/it]
3326it [1:31:10, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3327it [1:31:17, 3.57s/it]
3328it [1:31:18, 2.89s/it]
3329it [1:31:19, 2.43s/it]
3330it [1:31:20, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3331it [1:31:25, 2.73s/it]
3332it [1:31:26, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3333it [1:31:32, 3.39s/it]
3334it [1:31:33, 2.77s/it]
3335it [1:31:35, 2.33s/it]
3336it [1:31:36, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3337it [1:31:41, 2.85s/it]
3338it [1:31:42, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3339it [1:31:49, 3.68s/it]
3340it [1:31:50, 2.97s/it]
3341it [1:31:51, 2.46s/it]
3342it [1:31:53, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3343it [1:31:54, 2.00s/it]
3344it [1:31:56, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3345it [1:32:03, 3.54s/it]
3346it [1:32:05, 2.88s/it]
3347it [1:32:06, 2.40s/it]
3348it [1:32:07, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3349it [1:32:10, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3350it [1:32:13, 2.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3351it [1:32:22, 4.52s/it]
3352it [1:32:24, 3.56s/it]
3353it [1:32:25, 2.88s/it]
3354it [1:32:26, 2.40s/it]
3355it [1:32:28, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3356it [1:32:31, 2.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3357it [1:32:36, 3.35s/it]
3358it [1:32:38, 2.73s/it]
3359it [1:32:39, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3360it [1:32:44, 3.21s/it]
3361it [1:32:46, 2.66s/it]
3362it [1:32:47, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3363it [1:32:53, 3.43s/it]
3364it [1:32:55, 2.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3365it [1:33:01, 3.77s/it]
3366it [1:33:02, 3.03s/it]
3367it [1:33:03, 2.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3368it [1:33:09, 3.41s/it]
3369it [1:33:10, 2.79s/it]
3370it [1:33:11, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3371it [1:33:19, 4.02s/it]
3372it [1:33:21, 3.22s/it]
3373it [1:33:22, 2.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3374it [1:33:27, 3.32s/it]
3375it [1:33:28, 2.72s/it]
3376it [1:33:29, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3377it [1:33:35, 3.30s/it]
3378it [1:33:36, 2.70s/it]
3379it [1:33:38, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3380it [1:33:42, 2.87s/it]
3381it [1:33:43, 2.41s/it]
3382it [1:33:45, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3383it [1:33:51, 3.35s/it]
3384it [1:33:52, 2.74s/it]
3385it [1:33:54, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3386it [1:33:59, 3.38s/it]
3387it [1:34:01, 2.77s/it]
3388it [1:34:02, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3389it [1:34:06, 2.92s/it]
3390it [1:34:08, 2.43s/it]
3391it [1:34:09, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3392it [1:34:14, 3.05s/it]
3393it [1:34:16, 2.53s/it]
3394it [1:34:17, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3395it [1:34:22, 2.93s/it]
3396it [1:34:23, 2.44s/it]
3397it [1:34:24, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3398it [1:34:29, 2.95s/it]
3399it [1:34:30, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3400it [1:34:36, 3.34s/it]
3401it [1:34:37, 2.74s/it]
3402it [1:34:39, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3403it [1:34:43, 2.85s/it]
3404it [1:34:44, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3405it [1:34:49, 3.25s/it]
3406it [1:34:50, 2.67s/it]
3407it [1:34:52, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3408it [1:34:57, 3.13s/it]
3409it [1:34:58, 2.58s/it]
3410it [1:35:00, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3411it [1:35:05, 3.19s/it]
3412it [1:35:06, 2.63s/it]
3413it [1:35:08, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3414it [1:35:12, 3.00s/it]
3415it [1:35:14, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3416it [1:35:19, 3.39s/it]
3417it [1:35:21, 2.77s/it]
3418it [1:35:22, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3419it [1:35:27, 3.18s/it]
3420it [1:35:28, 2.62s/it]
3421it [1:35:30, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3422it [1:35:36, 3.44s/it]
3423it [1:35:37, 2.80s/it]
3424it [1:35:39, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3425it [1:35:44, 3.14s/it]
3426it [1:35:45, 2.58s/it]
3427it [1:35:46, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3428it [1:35:52, 3.25s/it]
3429it [1:35:53, 2.68s/it]
3430it [1:35:55, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3431it [1:36:00, 3.12s/it]
3432it [1:36:01, 2.59s/it]
3433it [1:36:02, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3434it [1:36:08, 3.15s/it]
3435it [1:36:09, 2.60s/it]
3436it [1:36:10, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3437it [1:36:15, 3.09s/it]
3438it [1:36:17, 2.56s/it]
3439it [1:36:18, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3440it [1:36:23, 3.01s/it]
3441it [1:36:24, 2.51s/it]
3442it [1:36:26, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3443it [1:36:30, 2.85s/it]
3444it [1:36:31, 2.39s/it]
3445it [1:36:33, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3446it [1:36:37, 2.70s/it]
3447it [1:36:38, 2.30s/it]
3448it [1:36:40, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3449it [1:36:44, 2.79s/it]
3450it [1:36:46, 2.36s/it]
3451it [1:36:47, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3452it [1:36:51, 2.68s/it]
3453it [1:36:52, 2.27s/it]
3454it [1:36:54, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3455it [1:37:01, 3.63s/it]
3456it [1:37:03, 2.94s/it]
3457it [1:37:04, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3458it [1:37:09, 3.28s/it]
3459it [1:37:10, 2.69s/it]
3460it [1:37:12, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3461it [1:37:17, 3.25s/it]
3462it [1:37:19, 2.67s/it]
3463it [1:37:20, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3464it [1:37:22, 2.18s/it]
3465it [1:37:23, 1.92s/it]
3466it [1:37:24, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3467it [1:37:30, 2.75s/it]
3468it [1:37:31, 2.31s/it]
3469it [1:37:32, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3470it [1:37:37, 2.82s/it]
3471it [1:37:38, 2.36s/it]
3472it [1:37:39, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3473it [1:37:45, 3.20s/it]
3474it [1:37:47, 2.63s/it]
3475it [1:37:48, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3476it [1:37:52, 2.81s/it]
3477it [1:37:53, 2.35s/it]
3478it [1:37:55, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3479it [1:38:00, 2.98s/it]
3480it [1:38:01, 2.49s/it]
3481it [1:38:03, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3482it [1:38:07, 2.96s/it]
3483it [1:38:09, 2.46s/it]
3484it [1:38:10, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3485it [1:38:17, 3.49s/it]
3486it [1:38:18, 2.83s/it]
3487it [1:38:19, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3488it [1:38:26, 3.65s/it]
3489it [1:38:27, 2.95s/it]
3490it [1:38:28, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3491it [1:38:35, 3.55s/it]
3492it [1:38:36, 2.88s/it]
3493it [1:38:37, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3494it [1:38:42, 2.99s/it]
3495it [1:38:43, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3496it [1:38:47, 2.84s/it]
3497it [1:38:48, 2.39s/it]
3498it [1:38:49, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3499it [1:38:54, 2.82s/it]
3500it [1:38:55, 2.38s/it]
3501it [1:38:56, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3502it [1:39:01, 2.76s/it]
3503it [1:39:02, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3504it [1:39:05, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3505it [1:39:10, 3.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3506it [1:39:11, 2.70s/it]
3507it [1:39:13, 2.30s/it]
3508it [1:39:14, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3509it [1:39:16, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3510it [1:39:18, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3511it [1:39:23, 2.82s/it]
3512it [1:39:24, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3513it [1:39:31, 3.84s/it]
3514it [1:39:33, 3.08s/it]
3515it [1:39:34, 2.54s/it]
3516it [1:39:35, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3517it [1:39:39, 2.69s/it]
3518it [1:39:41, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3519it [1:39:49, 4.25s/it]
3520it [1:39:51, 3.37s/it]
3521it [1:39:52, 2.75s/it]
3522it [1:39:53, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3523it [1:39:58, 3.05s/it]
3524it [1:39:59, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3525it [1:40:07, 4.05s/it]
3526it [1:40:08, 3.24s/it]
3527it [1:40:10, 2.66s/it]
3528it [1:40:11, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3529it [1:40:12, 2.02s/it]
3530it [1:40:14, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3531it [1:40:15, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3532it [1:40:17, 1.61s/it]
3533it [1:40:18, 1.52s/it]
3534it [1:40:19, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3535it [1:40:21, 1.46s/it]
3536it [1:40:22, 1.42s/it]
3537it [1:40:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3538it [1:40:25, 1.41s/it]
3539it [1:40:26, 1.38s/it]
3540it [1:40:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3541it [1:40:30, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3542it [1:40:32, 1.78s/it]
3543it [1:40:33, 1.63s/it]
3544it [1:40:35, 1.53s/it]
3545it [1:40:36, 1.46s/it]
3546it [1:40:37, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3547it [1:40:39, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3548it [1:40:45, 2.83s/it]
3549it [1:40:46, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3550it [1:40:53, 3.90s/it]
3551it [1:40:55, 3.12s/it]
3552it [1:40:56, 2.57s/it]
3553it [1:40:57, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3554it [1:41:02, 2.84s/it]
3555it [1:41:03, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3556it [1:41:09, 3.48s/it]
3557it [1:41:10, 2.82s/it]
3558it [1:41:12, 2.37s/it]
3559it [1:41:13, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3560it [1:41:14, 1.88s/it]
3561it [1:41:16, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3562it [1:41:17, 1.64s/it]
3563it [1:41:19, 1.54s/it]
3564it [1:41:20, 1.47s/it]
3565it [1:41:21, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3566it [1:41:23, 1.42s/it]
3567it [1:41:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3568it [1:41:26, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3569it [1:41:28, 1.57s/it]
3570it [1:41:29, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3571it [1:41:30, 1.52s/it]
3572it [1:41:32, 1.45s/it]
3573it [1:41:33, 1.41s/it]
3574it [1:41:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3575it [1:41:36, 1.55s/it]
3576it [1:41:38, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3577it [1:41:39, 1.48s/it]
3578it [1:41:40, 1.43s/it]
3579it [1:41:42, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3580it [1:41:43, 1.42s/it]
3581it [1:41:45, 1.40s/it]
3582it [1:41:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3583it [1:41:50, 2.27s/it]
3584it [1:41:52, 1.98s/it]
3585it [1:41:53, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3586it [1:42:00, 3.39s/it]
3587it [1:42:01, 2.76s/it]
3588it [1:42:03, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3589it [1:42:09, 3.59s/it]
3590it [1:42:10, 2.90s/it]
3591it [1:42:12, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3592it [1:42:17, 3.37s/it]
3593it [1:42:19, 2.76s/it]
3594it [1:42:20, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3595it [1:42:25, 3.29s/it]
3596it [1:42:27, 2.69s/it]
3597it [1:42:28, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3598it [1:42:32, 2.82s/it]
3599it [1:42:33, 2.36s/it]
3600it [1:42:35, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3601it [1:42:40, 3.01s/it]
3602it [1:42:41, 2.50s/it]
3603it [1:42:43, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3604it [1:42:47, 2.91s/it]
3605it [1:42:49, 2.43s/it]
3606it [1:42:50, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3607it [1:42:56, 3.22s/it]
3608it [1:42:57, 2.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3609it [1:43:05, 4.15s/it]
3610it [1:43:06, 3.30s/it]
3611it [1:43:07, 2.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3612it [1:43:14, 3.85s/it]
3613it [1:43:15, 3.08s/it]
3614it [1:43:16, 2.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3615it [1:43:22, 3.49s/it]
3616it [1:43:24, 2.84s/it]
3617it [1:43:25, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3618it [1:43:29, 2.85s/it]
3619it [1:43:30, 2.40s/it]
3620it [1:43:31, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3621it [1:43:33, 1.94s/it]
3622it [1:43:34, 1.75s/it]
3623it [1:43:36, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3624it [1:43:38, 1.82s/it]
3625it [1:43:39, 1.66s/it]
3626it [1:43:41, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3627it [1:43:42, 1.54s/it]
3628it [1:43:43, 1.46s/it]
3629it [1:43:45, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3630it [1:43:53, 3.53s/it]
3631it [1:43:55, 2.89s/it]
3632it [1:43:56, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3633it [1:44:01, 3.09s/it]
3634it [1:44:02, 2.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3635it [1:44:08, 3.53s/it]
3636it [1:44:09, 2.86s/it]
3637it [1:44:10, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3638it [1:44:12, 2.13s/it]
3639it [1:44:13, 1.89s/it]
3640it [1:44:14, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3641it [1:44:16, 1.78s/it]
3642it [1:44:18, 1.64s/it]
3643it [1:44:19, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3644it [1:44:22, 1.96s/it]
3645it [1:44:23, 1.76s/it]
3646it [1:44:25, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3647it [1:44:27, 1.78s/it]
3648it [1:44:28, 1.63s/it]
3649it [1:44:29, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3650it [1:44:31, 1.53s/it]
3651it [1:44:32, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3652it [1:44:34, 1.47s/it]
3653it [1:44:35, 1.41s/it]
3654it [1:44:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3655it [1:44:38, 1.40s/it]
3656it [1:44:39, 1.37s/it]
3657it [1:44:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3658it [1:44:42, 1.38s/it]
3659it [1:44:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3660it [1:44:44, 1.38s/it]
3661it [1:44:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3662it [1:44:47, 1.40s/it]
3663it [1:44:48, 1.37s/it]
3664it [1:44:50, 1.35s/it]
3665it [1:44:51, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3666it [1:44:53, 1.36s/it]
3667it [1:44:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3668it [1:44:56, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3669it [1:44:57, 1.46s/it]
3670it [1:44:58, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3671it [1:45:00, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3672it [1:45:01, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3673it [1:45:03, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3674it [1:45:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3675it [1:45:06, 1.45s/it]
3676it [1:45:07, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3677it [1:45:08, 1.44s/it]
3678it [1:45:10, 1.40s/it]
3679it [1:45:11, 1.37s/it]
3680it [1:45:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3681it [1:45:14, 1.39s/it]
3682it [1:45:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3683it [1:45:18, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3684it [1:45:20, 1.76s/it]
3685it [1:45:21, 1.62s/it]
3686it [1:45:22, 1.52s/it]
3687it [1:45:24, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3688it [1:45:25, 1.46s/it]
3689it [1:45:26, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3690it [1:45:29, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3691it [1:45:30, 1.62s/it]
3692it [1:45:32, 1.53s/it]
3693it [1:45:33, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3694it [1:45:37, 2.22s/it]
3695it [1:45:38, 1.94s/it]
3696it [1:45:39, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3697it [1:45:41, 1.68s/it]
3698it [1:45:42, 1.56s/it]
3699it [1:45:44, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3700it [1:45:47, 2.04s/it]
3701it [1:45:48, 1.82s/it]
3702it [1:45:49, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3703it [1:45:51, 1.59s/it]
3704it [1:45:52, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3705it [1:45:56, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3706it [1:45:58, 2.16s/it]
3707it [1:45:59, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3708it [1:46:05, 2.96s/it]
3709it [1:46:06, 2.48s/it]
3710it [1:46:07, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3711it [1:46:09, 1.95s/it]
3712it [1:46:10, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3713it [1:46:16, 2.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3714it [1:46:17, 2.45s/it]
3715it [1:46:18, 2.11s/it]
3716it [1:46:20, 1.87s/it]
3717it [1:46:21, 1.71s/it]
3718it [1:46:22, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3719it [1:46:24, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3720it [1:46:27, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3721it [1:46:29, 1.90s/it]
3722it [1:46:30, 1.72s/it]
3723it [1:46:31, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3724it [1:46:38, 3.08s/it]
3725it [1:46:39, 2.55s/it]
3726it [1:46:40, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3727it [1:46:42, 1.97s/it]
3728it [1:46:43, 1.77s/it]
3729it [1:46:44, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3730it [1:46:46, 1.56s/it]
3731it [1:46:47, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3732it [1:46:49, 1.47s/it]
3733it [1:46:50, 1.42s/it]
3734it [1:46:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3735it [1:46:53, 1.40s/it]
3736it [1:46:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3737it [1:46:55, 1.40s/it]
3738it [1:46:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3739it [1:47:00, 1.85s/it]
3740it [1:47:01, 1.68s/it]
3741it [1:47:02, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3742it [1:47:04, 1.58s/it]
3743it [1:47:05, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3744it [1:47:10, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3745it [1:47:11, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3746it [1:47:15, 2.67s/it]
3747it [1:47:17, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3748it [1:47:23, 3.46s/it]
3749it [1:47:24, 2.82s/it]
3750it [1:47:25, 2.37s/it]
3751it [1:47:27, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3752it [1:47:31, 2.83s/it]
3753it [1:47:33, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3754it [1:47:40, 3.90s/it]
3755it [1:47:42, 3.11s/it]
3756it [1:47:43, 2.57s/it]
3757it [1:47:44, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3758it [1:47:49, 2.86s/it]
3759it [1:47:50, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3760it [1:47:57, 3.79s/it]
3761it [1:47:58, 3.06s/it]
3762it [1:48:00, 2.54s/it]
3763it [1:48:01, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3764it [1:48:05, 2.84s/it]
3765it [1:48:07, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3766it [1:48:14, 3.73s/it]
3767it [1:48:15, 3.00s/it]
3768it [1:48:16, 2.49s/it]
3769it [1:48:17, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3770it [1:48:21, 2.67s/it]
3771it [1:48:23, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3772it [1:48:29, 3.47s/it]
3773it [1:48:30, 2.82s/it]
3774it [1:48:32, 2.36s/it]
3775it [1:48:33, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3776it [1:48:37, 2.70s/it]
3777it [1:48:38, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3778it [1:48:45, 3.45s/it]
3779it [1:48:46, 2.81s/it]
3780it [1:48:47, 2.35s/it]
3781it [1:48:48, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3782it [1:48:52, 2.39s/it]
3783it [1:48:53, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3784it [1:48:59, 3.39s/it]
3785it [1:49:01, 2.77s/it]
3786it [1:49:02, 2.34s/it]
3787it [1:49:03, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3788it [1:49:08, 2.76s/it]
3789it [1:49:09, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3790it [1:49:17, 3.84s/it]
3791it [1:49:18, 3.08s/it]
3792it [1:49:19, 2.55s/it]
3793it [1:49:20, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3794it [1:49:24, 2.67s/it]
3795it [1:49:26, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3796it [1:49:33, 3.79s/it]
3797it [1:49:34, 3.04s/it]
3798it [1:49:36, 2.51s/it]
3799it [1:49:37, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3800it [1:49:41, 2.75s/it]
3801it [1:49:42, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3802it [1:49:50, 3.94s/it]
3803it [1:49:51, 3.15s/it]
3804it [1:49:53, 2.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3805it [1:49:57, 3.25s/it]
3806it [1:49:59, 2.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3807it [1:50:05, 3.66s/it]
3808it [1:50:06, 2.94s/it]
3809it [1:50:07, 2.46s/it]
3810it [1:50:09, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3811it [1:50:13, 2.68s/it]
3812it [1:50:14, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3813it [1:50:21, 3.78s/it]
3814it [1:50:22, 3.04s/it]
3815it [1:50:24, 2.51s/it]
3816it [1:50:25, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3817it [1:50:29, 2.69s/it]
3818it [1:50:30, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3819it [1:50:37, 3.50s/it]
3820it [1:50:38, 2.84s/it]
3821it [1:50:39, 2.38s/it]
3822it [1:50:41, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3823it [1:50:46, 3.21s/it]
3824it [1:50:48, 2.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3825it [1:50:56, 4.26s/it]
3826it [1:50:57, 3.38s/it]
3827it [1:50:59, 2.77s/it]
3828it [1:51:00, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3829it [1:51:04, 2.84s/it]
3830it [1:51:05, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3831it [1:51:12, 3.63s/it]
3832it [1:51:13, 2.93s/it]
3833it [1:51:14, 2.44s/it]
3834it [1:51:16, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3835it [1:51:21, 3.04s/it]
3836it [1:51:22, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3837it [1:51:29, 3.83s/it]
3838it [1:51:30, 3.08s/it]
3839it [1:51:32, 2.55s/it]
3840it [1:51:33, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3841it [1:51:37, 2.66s/it]
3842it [1:51:38, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3843it [1:51:44, 3.44s/it]
3844it [1:51:46, 2.80s/it]
3845it [1:51:47, 2.35s/it]
3846it [1:51:48, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3847it [1:51:53, 2.85s/it]
3848it [1:51:54, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3849it [1:52:02, 4.03s/it]
3850it [1:52:03, 3.21s/it]
3851it [1:52:05, 2.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3852it [1:52:10, 3.30s/it]
3853it [1:52:11, 2.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3854it [1:52:17, 3.70s/it]
3855it [1:52:18, 2.99s/it]
3856it [1:52:20, 2.50s/it]
3857it [1:52:21, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3858it [1:52:25, 2.62s/it]
3859it [1:52:26, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3860it [1:52:33, 3.54s/it]
3861it [1:52:34, 2.88s/it]
3862it [1:52:35, 2.40s/it]
3863it [1:52:36, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3864it [1:52:41, 2.70s/it]
3865it [1:52:42, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3866it [1:52:49, 3.84s/it]
3867it [1:52:51, 3.09s/it]
3868it [1:52:52, 2.55s/it]
3869it [1:52:53, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3870it [1:52:57, 2.65s/it]
3871it [1:52:58, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3872it [1:53:06, 3.76s/it]
3873it [1:53:07, 3.03s/it]
3874it [1:53:08, 2.51s/it]
3875it [1:53:10, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3876it [1:53:14, 2.83s/it]
3877it [1:53:15, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3878it [1:53:22, 3.54s/it]
3879it [1:53:23, 2.87s/it]
3880it [1:53:24, 2.40s/it]
3881it [1:53:26, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3882it [1:53:30, 2.66s/it]
3883it [1:53:31, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3884it [1:53:37, 3.46s/it]
3885it [1:53:38, 2.81s/it]
3886it [1:53:40, 2.36s/it]
3887it [1:53:41, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3888it [1:53:45, 2.67s/it]
3889it [1:53:47, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3890it [1:54:02, 6.09s/it]
3891it [1:54:03, 4.67s/it]
3892it [1:54:04, 3.67s/it]
3893it [1:54:06, 2.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3894it [1:54:10, 3.55s/it]
3895it [1:54:12, 2.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3896it [1:54:18, 3.87s/it]
3897it [1:54:19, 3.12s/it]
3898it [1:54:21, 2.58s/it]
3899it [1:54:22, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3900it [1:54:26, 2.84s/it]
3901it [1:54:28, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3902it [1:54:35, 3.90s/it]
3903it [1:54:36, 3.12s/it]
3904it [1:54:38, 2.57s/it]
3905it [1:54:39, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3906it [1:54:44, 3.08s/it]
3907it [1:54:45, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3908it [1:54:53, 4.09s/it]
3909it [1:54:54, 3.25s/it]
3910it [1:54:56, 2.66s/it]
3911it [1:54:57, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3912it [1:55:02, 3.09s/it]
3913it [1:55:03, 2.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3914it [1:55:10, 3.93s/it]
3915it [1:55:12, 3.14s/it]
3916it [1:55:13, 2.59s/it]
3917it [1:55:14, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3918it [1:55:19, 3.04s/it]
3919it [1:55:21, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3920it [1:55:28, 3.86s/it]
3921it [1:55:29, 3.10s/it]
3922it [1:55:30, 2.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3923it [1:55:35, 3.09s/it]
3924it [1:55:36, 2.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3925it [1:55:44, 4.08s/it]
3926it [1:55:45, 3.26s/it]
3927it [1:55:46, 2.67s/it]
3928it [1:55:47, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3929it [1:55:52, 2.86s/it]
3930it [1:55:53, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3931it [1:56:00, 3.62s/it]
3932it [1:56:01, 2.92s/it]
3933it [1:56:02, 2.44s/it]
3934it [1:56:03, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3935it [1:56:08, 2.74s/it]
3936it [1:56:09, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3937it [1:56:16, 3.63s/it]
3938it [1:56:17, 2.93s/it]
3939it [1:56:18, 2.44s/it]
3940it [1:56:20, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3941it [1:56:24, 2.86s/it]
3942it [1:56:25, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3943it [1:56:32, 3.77s/it]
3944it [1:56:34, 3.03s/it]
3945it [1:56:35, 2.51s/it]
3946it [1:56:36, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3947it [1:56:40, 2.67s/it]
3948it [1:56:42, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3949it [1:56:48, 3.53s/it]
3950it [1:56:49, 2.86s/it]
3951it [1:56:51, 2.39s/it]
3952it [1:56:52, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3953it [1:56:56, 2.69s/it]
3954it [1:56:57, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3955it [1:57:04, 3.50s/it]
3956it [1:57:05, 2.84s/it]
3957it [1:57:06, 2.38s/it]
3958it [1:57:08, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3959it [1:57:13, 2.96s/it]
3960it [1:57:14, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3961it [1:57:21, 3.93s/it]
3962it [1:57:23, 3.14s/it]
3963it [1:57:24, 2.60s/it]
3964it [1:57:25, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3965it [1:57:29, 2.72s/it]
3966it [1:57:31, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3967it [1:57:37, 3.45s/it]
3968it [1:57:38, 2.81s/it]
3969it [1:57:39, 2.37s/it]
3970it [1:57:41, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3971it [1:57:45, 2.60s/it]
3972it [1:57:46, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3973it [1:57:52, 3.47s/it]
3974it [1:57:54, 2.82s/it]
3975it [1:57:55, 2.36s/it]
3976it [1:57:56, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3977it [1:58:02, 3.03s/it]
3978it [1:58:03, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3979it [1:58:10, 4.04s/it]
3980it [1:58:12, 3.23s/it]
3981it [1:58:13, 2.66s/it]
3982it [1:58:14, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3983it [1:58:18, 2.76s/it]
3984it [1:58:20, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3985it [1:58:28, 4.08s/it]
3986it [1:58:29, 3.24s/it]
3987it [1:58:30, 2.67s/it]
3988it [1:58:32, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3989it [1:58:36, 2.73s/it]
3990it [1:58:37, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3991it [1:58:45, 4.14s/it]
3992it [1:58:47, 3.29s/it]
3993it [1:58:48, 2.69s/it]
3994it [1:58:49, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3995it [1:58:53, 2.85s/it]
3996it [1:58:55, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3997it [1:59:03, 4.08s/it]
3998it [1:59:04, 3.25s/it]
3999it [1:59:05, 2.67s/it]
4000it [1:59:07, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4001it [1:59:11, 3.00s/it]
4002it [1:59:13, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4003it [1:59:18, 3.34s/it]
4004it [1:59:19, 2.72s/it]
4005it [1:59:21, 2.29s/it]
4006it [1:59:22, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4007it [1:59:27, 2.81s/it]
4008it [1:59:28, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4009it [1:59:35, 3.73s/it]
4010it [1:59:36, 3.01s/it]
4011it [1:59:38, 2.49s/it]
4012it [1:59:39, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4013it [1:59:44, 2.91s/it]
4014it [1:59:45, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4015it [1:59:52, 3.97s/it]
4016it [1:59:54, 3.17s/it]
4017it [1:59:55, 2.62s/it]
4018it [1:59:56, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4019it [2:00:00, 2.75s/it]
4020it [2:00:02, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4021it [2:00:08, 3.50s/it]
4022it [2:00:09, 2.84s/it]
4023it [2:00:11, 2.38s/it]
4024it [2:00:12, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4025it [2:00:16, 2.83s/it]
4026it [2:00:18, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4027it [2:00:23, 3.09s/it]
4028it [2:00:24, 2.59s/it]
4029it [2:00:25, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4030it [2:00:30, 2.81s/it]
4031it [2:00:31, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4032it [2:00:36, 3.17s/it]
4033it [2:00:37, 2.61s/it]
4034it [2:00:39, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4035it [2:00:45, 3.35s/it]
4036it [2:00:46, 2.73s/it]
4037it [2:00:47, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4038it [2:00:51, 2.92s/it]
4039it [2:00:53, 2.44s/it]
4040it [2:00:54, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4041it [2:01:00, 3.14s/it]
4042it [2:01:01, 2.59s/it]
4043it [2:01:02, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4044it [2:01:09, 3.46s/it]
4045it [2:01:10, 2.81s/it]
4046it [2:01:11, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4047it [2:01:18, 3.65s/it]
4048it [2:01:19, 2.95s/it]
4049it [2:01:21, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4050it [2:01:34, 5.85s/it]
4051it [2:01:36, 4.49s/it]
4052it [2:01:37, 3.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4053it [2:01:42, 4.05s/it]
4054it [2:01:43, 3.22s/it]
4055it [2:01:45, 2.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4056it [2:01:51, 3.69s/it]
4057it [2:01:52, 2.98s/it]
4058it [2:01:54, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4059it [2:01:59, 3.28s/it]
4060it [2:02:00, 2.69s/it]
4061it [2:02:01, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4062it [2:02:07, 3.14s/it]
4063it [2:02:08, 2.59s/it]
4064it [2:02:09, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4065it [2:02:14, 3.02s/it]
4066it [2:02:15, 2.51s/it]
4067it [2:02:17, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4068it [2:02:22, 3.23s/it]
4069it [2:02:24, 2.65s/it]
4070it [2:02:25, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4071it [2:02:31, 3.25s/it]
4072it [2:02:32, 2.67s/it]
4073it [2:02:33, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4074it [2:02:39, 3.28s/it]
4075it [2:02:40, 2.69s/it]
4076it [2:02:42, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4077it [2:02:46, 3.03s/it]
4078it [2:02:48, 2.52s/it]
4079it [2:02:49, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4080it [2:02:54, 2.95s/it]
4081it [2:02:55, 2.45s/it]
4082it [2:02:56, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4083it [2:03:01, 2.85s/it]
4084it [2:03:02, 2.38s/it]
4085it [2:03:04, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4086it [2:03:09, 2.97s/it]
4087it [2:03:10, 2.46s/it]
4088it [2:03:11, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4089it [2:03:13, 2.05s/it]
4090it [2:03:14, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4091it [2:03:19, 2.57s/it]
4092it [2:03:20, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4093it [2:03:27, 3.77s/it]
4094it [2:03:29, 3.03s/it]
4095it [2:03:30, 2.52s/it]
4096it [2:03:31, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4097it [2:03:35, 2.70s/it]
4098it [2:03:37, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4099it [2:03:44, 3.70s/it]
4100it [2:03:45, 3.00s/it]
4101it [2:03:46, 2.51s/it]
4102it [2:03:48, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4103it [2:03:51, 2.50s/it]
4104it [2:03:52, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4105it [2:03:59, 3.41s/it]
4106it [2:04:00, 2.77s/it]
4107it [2:04:01, 2.34s/it]
4108it [2:04:03, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4109it [2:04:07, 2.58s/it]
4110it [2:04:08, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4111it [2:04:13, 3.20s/it]
4112it [2:04:15, 2.62s/it]
4113it [2:04:16, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4114it [2:04:22, 3.41s/it]
4115it [2:04:23, 2.77s/it]
4116it [2:04:25, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4117it [2:04:30, 3.24s/it]
4118it [2:04:31, 2.66s/it]
4119it [2:04:33, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4120it [2:04:37, 2.94s/it]
4121it [2:04:39, 2.45s/it]
4122it [2:04:40, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4123it [2:04:45, 2.99s/it]
4124it [2:04:46, 2.48s/it]
4125it [2:04:47, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4126it [2:04:53, 3.04s/it]
4127it [2:04:54, 2.51s/it]
4128it [2:04:55, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4129it [2:05:00, 2.90s/it]
4130it [2:05:01, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4131it [2:05:07, 3.39s/it]
4132it [2:05:08, 2.76s/it]
4133it [2:05:09, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4134it [2:05:14, 3.01s/it]
4135it [2:05:15, 2.51s/it]
4136it [2:05:17, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4137it [2:05:22, 3.22s/it]
4138it [2:05:24, 2.64s/it]
4139it [2:05:25, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4140it [2:05:30, 3.06s/it]
4141it [2:05:31, 2.54s/it]
4142it [2:05:33, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4143it [2:05:38, 3.08s/it]
4144it [2:05:39, 2.54s/it]
4145it [2:05:40, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4146it [2:05:45, 3.03s/it]
4147it [2:05:47, 2.52s/it]
4148it [2:05:48, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4149it [2:05:53, 3.05s/it]
4150it [2:05:55, 2.53s/it]
4151it [2:05:56, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4152it [2:06:01, 3.05s/it]
4153it [2:06:02, 2.53s/it]
4154it [2:06:04, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4155it [2:06:10, 3.39s/it]
4156it [2:06:11, 2.77s/it]
4157it [2:06:12, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4158it [2:06:17, 3.03s/it]
4159it [2:06:18, 2.51s/it]
4160it [2:06:20, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4161it [2:06:25, 2.99s/it]
4162it [2:06:26, 2.49s/it]
4163it [2:06:27, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4164it [2:06:31, 2.57s/it]
4165it [2:06:32, 2.20s/it]
4166it [2:06:34, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4167it [2:06:38, 2.73s/it]
4168it [2:06:39, 2.30s/it]
4169it [2:06:41, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4170it [2:06:47, 3.17s/it]
4171it [2:06:48, 2.61s/it]
4172it [2:06:49, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4173it [2:06:55, 3.23s/it]
4174it [2:06:56, 2.66s/it]
4175it [2:06:57, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4176it [2:07:03, 3.35s/it]
4177it [2:07:05, 2.74s/it]
4178it [2:07:06, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4179it [2:07:15, 4.28s/it]
4180it [2:07:16, 3.40s/it]
4181it [2:07:18, 2.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4182it [2:07:23, 3.53s/it]
4183it [2:07:24, 2.86s/it]
4184it [2:07:25, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4185it [2:07:31, 3.34s/it]
4186it [2:07:32, 2.74s/it]
4187it [2:07:34, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4188it [2:07:39, 3.36s/it]
4189it [2:07:41, 2.75s/it]
4190it [2:07:42, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4191it [2:07:48, 3.31s/it]
4192it [2:07:49, 2.70s/it]
4193it [2:07:50, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4194it [2:07:56, 3.23s/it]
4195it [2:07:57, 2.65s/it]
4196it [2:07:58, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4197it [2:08:03, 2.96s/it]
4198it [2:08:04, 2.46s/it]
4199it [2:08:06, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4200it [2:08:10, 2.96s/it]
4201it [2:08:12, 2.47s/it]
4202it [2:08:13, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4203it [2:08:19, 3.24s/it]
4204it [2:08:20, 2.66s/it]
4205it [2:08:22, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4206it [2:08:27, 3.19s/it]
4207it [2:08:28, 2.64s/it]
4208it [2:08:30, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4209it [2:08:34, 2.99s/it]
4210it [2:08:36, 2.49s/it]
4211it [2:08:37, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4212it [2:08:42, 2.99s/it]
4213it [2:08:43, 2.48s/it]
4214it [2:08:45, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4215it [2:08:50, 3.17s/it]
4216it [2:08:51, 2.61s/it]
4217it [2:08:53, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4218it [2:08:59, 3.29s/it]
4219it [2:09:00, 2.69s/it]
4220it [2:09:01, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4221it [2:09:07, 3.31s/it]
4222it [2:09:08, 2.70s/it]
4223it [2:09:09, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4224it [2:09:18, 4.14s/it]
4225it [2:09:19, 3.29s/it]
4226it [2:09:21, 2.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4227it [2:09:26, 3.43s/it]
4228it [2:09:27, 2.79s/it]
4229it [2:09:28, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4230it [2:09:33, 3.17s/it]
4231it [2:09:35, 2.61s/it]
4232it [2:09:36, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4233it [2:09:42, 3.33s/it]
4234it [2:09:43, 2.73s/it]
4235it [2:09:45, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4236it [2:09:50, 3.21s/it]
4237it [2:09:51, 2.65s/it]
4238it [2:09:53, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4239it [2:09:58, 3.18s/it]
4240it [2:09:59, 2.62s/it]
4241it [2:10:01, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4242it [2:10:06, 3.10s/it]
4243it [2:10:07, 2.57s/it]
4244it [2:10:08, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4245it [2:10:14, 3.19s/it]
4246it [2:10:15, 2.62s/it]
4247it [2:10:16, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4248it [2:10:22, 3.25s/it]
4249it [2:10:23, 2.67s/it]
4250it [2:10:25, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4251it [2:10:33, 4.01s/it]
4252it [2:10:34, 3.21s/it]
4253it [2:10:35, 2.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4254it [2:10:41, 3.67s/it]
4255it [2:10:43, 2.96s/it]
4256it [2:10:44, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4257it [2:10:48, 3.01s/it]
4258it [2:10:50, 2.49s/it]
4259it [2:10:51, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4260it [2:10:57, 3.22s/it]
4261it [2:10:58, 2.64s/it]
4262it [2:10:59, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4263it [2:11:05, 3.13s/it]
4264it [2:11:06, 2.59s/it]
4265it [2:11:07, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4266it [2:11:13, 3.24s/it]
4267it [2:11:14, 2.67s/it]
4268it [2:11:15, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4269it [2:11:20, 3.08s/it]
4270it [2:11:22, 2.54s/it]
4271it [2:11:23, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4272it [2:11:28, 2.99s/it]
4273it [2:11:29, 2.48s/it]
4274it [2:11:31, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4275it [2:11:36, 3.12s/it]
4276it [2:11:37, 2.58s/it]
4277it [2:11:39, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4278it [2:11:43, 2.90s/it]
4279it [2:11:44, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4280it [2:11:52, 3.93s/it]
4281it [2:11:53, 3.16s/it]
4282it [2:11:55, 2.62s/it]
4283it [2:11:56, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4284it [2:11:57, 2.01s/it]
4285it [2:11:59, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4286it [2:12:08, 3.95s/it]
4287it [2:12:09, 3.19s/it]
4288it [2:12:11, 2.65s/it]
4289it [2:12:12, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4290it [2:12:15, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4291it [2:12:18, 2.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4292it [2:12:24, 3.66s/it]
4293it [2:12:25, 2.95s/it]
4294it [2:12:27, 2.46s/it]
4295it [2:12:28, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4296it [2:12:32, 2.84s/it]
4297it [2:12:34, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4298it [2:12:41, 3.92s/it]
4299it [2:12:42, 3.13s/it]
4300it [2:12:44, 2.57s/it]
4301it [2:12:45, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4302it [2:12:49, 2.82s/it]
4303it [2:12:51, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4304it [2:12:59, 4.05s/it]
4305it [2:13:00, 3.22s/it]
4306it [2:13:01, 2.65s/it]
4307it [2:13:03, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4308it [2:13:07, 2.91s/it]
4309it [2:13:08, 2.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4310it [2:13:15, 3.68s/it]
4311it [2:13:16, 2.98s/it]
4312it [2:13:18, 2.48s/it]
4313it [2:13:19, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4314it [2:13:23, 2.76s/it]
4315it [2:13:24, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4316it [2:13:31, 3.66s/it]
4317it [2:13:33, 2.95s/it]
4318it [2:13:34, 2.45s/it]
4319it [2:13:35, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4320it [2:13:39, 2.74s/it]
4321it [2:13:41, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4322it [2:13:48, 3.79s/it]
4323it [2:13:49, 3.04s/it]
4324it [2:13:50, 2.52s/it]
4325it [2:13:52, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4326it [2:13:56, 2.77s/it]
4327it [2:13:57, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4328it [2:14:04, 3.50s/it]
4329it [2:14:05, 2.85s/it]
4330it [2:14:06, 2.39s/it]
4331it [2:14:07, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4332it [2:14:12, 2.75s/it]
4333it [2:14:13, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4334it [2:14:19, 3.48s/it]
4335it [2:14:21, 2.83s/it]
4336it [2:14:22, 2.37s/it]
4337it [2:14:23, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4338it [2:14:28, 2.78s/it]
4339it [2:14:29, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4340it [2:14:36, 3.73s/it]
4341it [2:14:37, 3.01s/it]
4342it [2:14:39, 2.52s/it]
4343it [2:14:40, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4344it [2:14:44, 2.73s/it]
4345it [2:14:45, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4346it [2:14:51, 3.38s/it]
4347it [2:14:53, 2.77s/it]
4348it [2:14:54, 2.34s/it]
4349it [2:14:55, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4350it [2:14:58, 2.37s/it]
4351it [2:15:00, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4352it [2:15:06, 3.18s/it]
4353it [2:15:07, 2.63s/it]
4354it [2:15:08, 2.25s/it]
4355it [2:15:10, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4356it [2:15:13, 2.48s/it]
4357it [2:15:15, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4358it [2:15:22, 3.67s/it]
4359it [2:15:23, 2.97s/it]
4360it [2:15:25, 2.48s/it]
4361it [2:15:26, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4362it [2:15:31, 3.02s/it]
4363it [2:15:32, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4364it [2:15:40, 4.18s/it]
4365it [2:15:42, 3.33s/it]
4366it [2:15:43, 2.74s/it]
4367it [2:15:44, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4368it [2:15:48, 2.81s/it]
4369it [2:15:50, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4370it [2:15:56, 3.56s/it]
4371it [2:15:57, 2.89s/it]
4372it [2:15:59, 2.42s/it]
4373it [2:16:00, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4374it [2:16:05, 3.08s/it]
4375it [2:16:07, 2.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4376it [2:16:13, 3.71s/it]
4377it [2:16:14, 2.99s/it]
4378it [2:16:16, 2.48s/it]
4379it [2:16:17, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4380it [2:16:21, 2.72s/it]
4381it [2:16:22, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4382it [2:16:30, 3.76s/it]
4383it [2:16:31, 3.02s/it]
4384it [2:16:32, 2.50s/it]
4385it [2:16:33, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4386it [2:16:38, 2.77s/it]
4387it [2:16:39, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4388it [2:16:46, 3.87s/it]
4389it [2:16:48, 3.11s/it]
4390it [2:16:49, 2.57s/it]
4391it [2:16:50, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4392it [2:16:55, 2.90s/it]
4393it [2:16:56, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4394it [2:17:02, 3.38s/it]
4395it [2:17:03, 2.76s/it]
4396it [2:17:05, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4397it [2:17:10, 3.40s/it]
4398it [2:17:12, 2.77s/it]
4399it [2:17:13, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4400it [2:17:23, 4.49s/it]
4401it [2:17:24, 3.54s/it]
4402it [2:17:25, 2.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4403it [2:17:31, 3.60s/it]
4404it [2:17:32, 2.92s/it]
4405it [2:17:33, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4406it [2:17:38, 3.28s/it]
4407it [2:17:40, 2.69s/it]
4408it [2:17:41, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4409it [2:17:47, 3.25s/it]
4410it [2:17:48, 2.67s/it]
4411it [2:17:49, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4412it [2:17:54, 3.16s/it]
4413it [2:17:56, 2.61s/it]
4414it [2:17:57, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4415it [2:18:03, 3.48s/it]
4416it [2:18:05, 2.85s/it]
4417it [2:18:06, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4418it [2:18:10, 2.69s/it]
4419it [2:18:11, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4420it [2:18:16, 3.01s/it]
4421it [2:18:17, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4422it [2:18:23, 3.42s/it]
4423it [2:18:24, 2.79s/it]
4424it [2:18:25, 2.34s/it]
4425it [2:18:26, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4426it [2:18:31, 2.69s/it]
4427it [2:18:32, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4428it [2:18:38, 3.44s/it]
4429it [2:18:39, 2.80s/it]
4430it [2:18:41, 2.37s/it]
4431it [2:18:42, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4432it [2:18:46, 2.69s/it]
4433it [2:18:48, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4434it [2:18:54, 3.56s/it]
4435it [2:18:55, 2.88s/it]
4436it [2:18:57, 2.41s/it]
4437it [2:18:58, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4438it [2:19:03, 2.88s/it]
4439it [2:19:04, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4440it [2:19:10, 3.53s/it]
4441it [2:19:12, 2.89s/it]
4442it [2:19:13, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4443it [2:19:15, 2.42s/it]
4444it [2:19:17, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4445it [2:19:18, 1.95s/it]
4446it [2:19:20, 1.76s/it]
4447it [2:19:21, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4448it [2:19:26, 2.68s/it]
4449it [2:19:27, 2.27s/it]
4450it [2:19:29, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4451it [2:19:34, 2.83s/it]
4452it [2:19:35, 2.37s/it]
4453it [2:19:36, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4454it [2:19:41, 3.00s/it]
4455it [2:19:43, 2.49s/it]
4456it [2:19:44, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4457it [2:19:48, 2.81s/it]
4458it [2:19:50, 2.36s/it]
4459it [2:19:51, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4460it [2:19:56, 2.95s/it]
4461it [2:19:57, 2.45s/it]
4462it [2:19:59, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4463it [2:20:05, 3.46s/it]
4464it [2:20:07, 2.82s/it]
4465it [2:20:08, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4466it [2:20:14, 3.53s/it]
4467it [2:20:15, 2.88s/it]
4468it [2:20:17, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4469it [2:20:23, 3.46s/it]
4470it [2:20:24, 2.81s/it]
4471it [2:20:25, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4472it [2:20:27, 2.09s/it]
4473it [2:20:28, 1.85s/it]
4474it [2:20:29, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4475it [2:20:31, 1.67s/it]
4476it [2:20:32, 1.57s/it]
4477it [2:20:34, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4478it [2:20:39, 2.66s/it]
4479it [2:20:40, 2.28s/it]
4480it [2:20:42, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4481it [2:20:47, 3.10s/it]
4482it [2:20:49, 2.58s/it]
4483it [2:20:50, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4484it [2:20:56, 3.33s/it]
4485it [2:20:57, 2.72s/it]
4486it [2:20:59, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4487it [2:21:03, 2.86s/it]
4488it [2:21:04, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4489it [2:21:07, 2.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4490it [2:21:12, 3.31s/it]
4491it [2:21:14, 2.72s/it]
4492it [2:21:15, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4493it [2:21:21, 3.29s/it]
4494it [2:21:22, 2.71s/it]
4495it [2:21:23, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4496it [2:21:28, 3.14s/it]
4497it [2:21:30, 2.59s/it]
4498it [2:21:31, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4499it [2:21:36, 3.18s/it]
4500it [2:21:38, 2.63s/it]
4501it [2:21:39, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4502it [2:21:45, 3.41s/it]
4503it [2:21:47, 2.79s/it]
4504it [2:21:48, 2.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4505it [2:21:53, 3.31s/it]
4506it [2:21:55, 2.72s/it]
4507it [2:21:56, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4508it [2:21:58, 2.06s/it]
4509it [2:21:59, 1.83s/it]
4510it [2:22:00, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4511it [2:22:02, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4512it [2:22:03, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4513it [2:22:04, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4514it [2:22:06, 1.52s/it]
4515it [2:22:07, 1.46s/it]
4516it [2:22:09, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4517it [2:22:10, 1.45s/it]
4518it [2:22:11, 1.41s/it]
4519it [2:22:13, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4520it [2:22:14, 1.43s/it]
4521it [2:22:16, 1.40s/it]
4522it [2:22:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4523it [2:22:18, 1.40s/it]
4524it [2:22:20, 1.37s/it]
4525it [2:22:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4526it [2:22:23, 1.39s/it]
4527it [2:22:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4528it [2:22:25, 1.43s/it]
4529it [2:22:27, 1.40s/it]
4530it [2:22:28, 1.39s/it]
4531it [2:22:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4532it [2:22:33, 1.95s/it]
4533it [2:22:34, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4534it [2:22:37, 2.16s/it]
4535it [2:22:38, 1.90s/it]
4536it [2:22:40, 1.72s/it]
4537it [2:22:41, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4538it [2:22:45, 2.29s/it]
4539it [2:22:46, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4540it [2:22:48, 1.85s/it]
4541it [2:22:49, 1.68s/it]
4542it [2:22:50, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4543it [2:22:54, 2.34s/it]
4544it [2:22:56, 2.03s/it]
4545it [2:22:57, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4546it [2:23:02, 2.65s/it]
4547it [2:23:03, 2.24s/it]
4548it [2:23:04, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4549it [2:23:10, 3.00s/it]
4550it [2:23:11, 2.50s/it]
4551it [2:23:12, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4552it [2:23:17, 3.02s/it]
4553it [2:23:19, 2.51s/it]
4554it [2:23:20, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4555it [2:23:26, 3.17s/it]
4556it [2:23:27, 2.61s/it]
4557it [2:23:28, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4558it [2:23:30, 2.00s/it]
4559it [2:23:31, 1.79s/it]
4560it [2:23:32, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4561it [2:23:34, 1.61s/it]
4562it [2:23:35, 1.52s/it]
4563it [2:23:36, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4564it [2:23:38, 1.46s/it]
4565it [2:23:39, 1.42s/it]
4566it [2:23:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4567it [2:23:46, 2.57s/it]
4568it [2:23:47, 2.20s/it]
4569it [2:23:49, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4570it [2:23:51, 1.98s/it]
4571it [2:23:52, 1.78s/it]
4572it [2:23:53, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4573it [2:23:55, 1.62s/it]
4574it [2:23:56, 1.53s/it]
4575it [2:23:57, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4576it [2:24:02, 2.45s/it]
4577it [2:24:04, 2.11s/it]
4578it [2:24:05, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4579it [2:24:06, 1.79s/it]
4580it [2:24:08, 1.65s/it]
4581it [2:24:09, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4582it [2:24:16, 3.03s/it]
4583it [2:24:17, 2.51s/it]
4584it [2:24:18, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4585it [2:24:20, 1.94s/it]
4586it [2:24:21, 1.75s/it]
4587it [2:24:22, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4588it [2:24:27, 2.70s/it]
4589it [2:24:29, 2.29s/it]
4590it [2:24:30, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4591it [2:24:32, 1.86s/it]
4592it [2:24:33, 1.70s/it]
4593it [2:24:34, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4594it [2:24:38, 2.15s/it]
4595it [2:24:39, 1.90s/it]
4596it [2:24:40, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4597it [2:24:42, 1.65s/it]
4598it [2:24:43, 1.54s/it]
4599it [2:24:44, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4600it [2:24:46, 1.48s/it]
4601it [2:24:47, 1.42s/it]
4602it [2:24:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4603it [2:24:52, 1.97s/it]
4604it [2:24:53, 1.77s/it]
4605it [2:24:54, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4606it [2:24:56, 1.58s/it]
4607it [2:24:57, 1.52s/it]
4608it [2:24:59, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4609it [2:25:05, 2.99s/it]
4610it [2:25:06, 2.48s/it]
4611it [2:25:08, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4612it [2:25:09, 1.93s/it]
4613it [2:25:11, 1.75s/it]
4614it [2:25:12, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4615it [2:25:13, 1.57s/it]
4616it [2:25:15, 1.50s/it]
4617it [2:25:16, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4618it [2:25:18, 1.46s/it]
4619it [2:25:19, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4620it [2:25:20, 1.42s/it]
4621it [2:25:22, 1.39s/it]
4622it [2:25:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4623it [2:25:24, 1.41s/it]
4624it [2:25:26, 1.38s/it]
4625it [2:25:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4626it [2:25:28, 1.39s/it]
4627it [2:25:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4628it [2:25:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4629it [2:25:33, 1.41s/it]
4630it [2:25:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4631it [2:25:35, 1.41s/it]
4632it [2:25:37, 1.38s/it]
4633it [2:25:38, 1.35s/it]
4634it [2:25:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4635it [2:25:41, 1.38s/it]
4636it [2:25:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4637it [2:25:44, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4638it [2:25:45, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4639it [2:25:47, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4640it [2:25:48, 1.45s/it]
4641it [2:25:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4642it [2:25:51, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4643it [2:25:52, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4644it [2:25:54, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4645it [2:25:55, 1.46s/it]
4646it [2:25:57, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4647it [2:25:58, 1.52s/it]
4648it [2:26:00, 1.45s/it]
4649it [2:26:01, 1.41s/it]
4650it [2:26:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4651it [2:26:04, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4652it [2:26:10, 2.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4653it [2:26:11, 2.44s/it]
4654it [2:26:13, 2.10s/it]
4655it [2:26:14, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4656it [2:26:16, 1.80s/it]
4657it [2:26:17, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4658it [2:26:19, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4659it [2:26:20, 1.58s/it]
4660it [2:26:21, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4661it [2:26:23, 1.50s/it]
4662it [2:26:24, 1.44s/it]
4663it [2:26:25, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4664it [2:26:27, 1.43s/it]
4665it [2:26:28, 1.39s/it]
4666it [2:26:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4667it [2:26:31, 1.40s/it]
4668it [2:26:32, 1.38s/it]
4669it [2:26:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4670it [2:26:35, 1.39s/it]
4671it [2:26:36, 1.37s/it]
4672it [2:26:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4673it [2:26:39, 1.38s/it]
4674it [2:26:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4675it [2:26:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4676it [2:26:43, 1.42s/it]
4677it [2:26:45, 1.39s/it]
4678it [2:26:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4679it [2:26:48, 1.42s/it]
4680it [2:26:49, 1.39s/it]
4681it [2:26:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4682it [2:26:52, 1.44s/it]
4683it [2:26:53, 1.41s/it]
4684it [2:26:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4685it [2:26:56, 1.42s/it]
4686it [2:26:57, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4687it [2:26:59, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4688it [2:27:01, 1.53s/it]
4689it [2:27:02, 1.47s/it]
4690it [2:27:03, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4691it [2:27:05, 1.44s/it]
4692it [2:27:06, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4693it [2:27:08, 1.46s/it]
4694it [2:27:09, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4695it [2:27:11, 1.45s/it]
4696it [2:27:12, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4697it [2:27:13, 1.45s/it]
4698it [2:27:15, 1.40s/it]
4699it [2:27:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4700it [2:27:18, 1.42s/it]
4701it [2:27:19, 1.38s/it]
4702it [2:27:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4703it [2:27:22, 1.38s/it]
4704it [2:27:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4705it [2:27:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4706it [2:27:26, 1.40s/it]
4707it [2:27:27, 1.37s/it]
4708it [2:27:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4709it [2:27:30, 1.41s/it]
4710it [2:27:31, 1.38s/it]
4711it [2:27:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4712it [2:27:36, 2.08s/it]
4713it [2:27:38, 1.85s/it]
4714it [2:27:39, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4715it [2:27:40, 1.65s/it]
4716it [2:27:42, 1.55s/it]
4717it [2:27:43, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4718it [2:27:45, 1.50s/it]
4719it [2:27:46, 1.44s/it]
4720it [2:27:47, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4721it [2:27:49, 1.46s/it]
4722it [2:27:50, 1.41s/it]
4723it [2:27:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4724it [2:27:53, 1.43s/it]
4725it [2:27:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4726it [2:27:56, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4727it [2:27:57, 1.43s/it]
4728it [2:27:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4729it [2:28:00, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4730it [2:28:01, 1.43s/it]
4731it [2:28:03, 1.39s/it]
4732it [2:28:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4733it [2:28:06, 1.41s/it]
4734it [2:28:07, 1.38s/it]
4735it [2:28:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4736it [2:28:10, 1.38s/it]
4737it [2:28:11, 1.36s/it]
4738it [2:28:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4739it [2:28:14, 1.39s/it]
4740it [2:28:15, 1.36s/it]
4741it [2:28:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4742it [2:28:18, 1.38s/it]
4743it [2:28:19, 1.36s/it]
4744it [2:28:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4745it [2:28:22, 1.36s/it]
4746it [2:28:23, 1.34s/it]
4747it [2:28:24, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4748it [2:28:26, 1.36s/it]
4749it [2:28:27, 1.34s/it]
4750it [2:28:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4751it [2:28:30, 1.37s/it]
4752it [2:28:31, 1.35s/it]
4753it [2:28:32, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4754it [2:28:34, 1.36s/it]
4755it [2:28:35, 1.35s/it]
4756it [2:28:37, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4757it [2:28:38, 1.37s/it]
4758it [2:28:39, 1.35s/it]
4759it [2:28:41, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4760it [2:28:42, 1.38s/it]
4761it [2:28:43, 1.36s/it]
4762it [2:28:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4763it [2:28:46, 1.37s/it]
4764it [2:28:47, 1.35s/it]
4765it [2:28:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4766it [2:28:50, 1.40s/it]
4767it [2:28:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4768it [2:28:53, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4769it [2:28:55, 1.42s/it]
4770it [2:28:56, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4771it [2:28:57, 1.46s/it]
4772it [2:28:59, 1.41s/it]
4773it [2:29:00, 1.38s/it]
4774it [2:29:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4775it [2:29:03, 1.43s/it]
4776it [2:29:04, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4777it [2:29:06, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4778it [2:29:08, 1.55s/it]
4779it [2:29:09, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4780it [2:29:11, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4781it [2:29:14, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4782it [2:29:16, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4783it [2:29:17, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4784it [2:29:19, 1.71s/it]
4785it [2:29:20, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4786it [2:29:21, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4787it [2:29:23, 1.54s/it]
4788it [2:29:24, 1.47s/it]
4789it [2:29:26, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4790it [2:29:27, 1.41s/it]
4791it [2:29:28, 1.37s/it]
4792it [2:29:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4793it [2:29:31, 1.39s/it]
4794it [2:29:32, 1.36s/it]
4795it [2:29:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4796it [2:29:35, 1.37s/it]
4797it [2:29:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4798it [2:29:38, 1.38s/it]
4799it [2:29:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4800it [2:29:41, 1.39s/it]
4801it [2:29:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4802it [2:29:43, 1.40s/it]
4803it [2:29:45, 1.37s/it]
4804it [2:29:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4805it [2:29:47, 1.36s/it]
4806it [2:29:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4807it [2:29:50, 1.38s/it]
4808it [2:29:51, 1.35s/it]
4809it [2:29:53, 1.34s/it]
4810it [2:29:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4811it [2:29:55, 1.36s/it]
4812it [2:29:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4813it [2:29:58, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4814it [2:30:00, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4815it [2:30:01, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4816it [2:30:04, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4817it [2:30:05, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4818it [2:30:07, 1.63s/it]
4819it [2:30:08, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4820it [2:30:10, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4821it [2:30:11, 1.48s/it]
4822it [2:30:12, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4823it [2:30:14, 1.47s/it]
4824it [2:30:15, 1.42s/it]
4825it [2:30:16, 1.38s/it]
4826it [2:30:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4827it [2:30:19, 1.38s/it]
4828it [2:30:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4829it [2:30:22, 1.42s/it]
4830it [2:30:23, 1.39s/it]
4831it [2:30:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4832it [2:30:26, 1.40s/it]
4833it [2:30:27, 1.36s/it]
4834it [2:30:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4835it [2:30:30, 1.40s/it]
4836it [2:30:32, 1.36s/it]
4837it [2:30:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4838it [2:30:34, 1.39s/it]
4839it [2:30:36, 1.36s/it]
4840it [2:30:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4841it [2:30:38, 1.37s/it]
4842it [2:30:40, 1.36s/it]
4843it [2:30:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4844it [2:30:43, 1.39s/it]
4845it [2:30:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4846it [2:30:46, 1.62s/it]
4847it [2:30:47, 1.53s/it]
4848it [2:30:49, 1.46s/it]
4849it [2:30:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4850it [2:30:51, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4851it [2:30:54, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4852it [2:30:56, 1.77s/it]
4853it [2:30:57, 1.64s/it]
4854it [2:30:59, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4855it [2:31:00, 1.51s/it]
4856it [2:31:01, 1.46s/it]
4857it [2:31:03, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4858it [2:31:04, 1.43s/it]
4859it [2:31:05, 1.39s/it]
4860it [2:31:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4861it [2:31:08, 1.39s/it]
4862it [2:31:09, 1.37s/it]
4863it [2:31:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4864it [2:31:12, 1.36s/it]
4865it [2:31:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4866it [2:31:15, 1.41s/it]
4867it [2:31:16, 1.38s/it]
4868it [2:31:18, 1.35s/it]
4869it [2:31:19, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4870it [2:31:20, 1.37s/it]
4871it [2:31:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4872it [2:31:24, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4873it [2:31:25, 1.57s/it]
4874it [2:31:27, 1.51s/it]
4875it [2:31:28, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4876it [2:31:30, 1.47s/it]
4877it [2:31:31, 1.42s/it]
4878it [2:31:32, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4879it [2:31:34, 1.39s/it]
4880it [2:31:35, 1.36s/it]
4881it [2:31:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4882it [2:31:38, 1.38s/it]
4883it [2:31:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4884it [2:31:40, 1.42s/it]
4885it [2:31:42, 1.38s/it]
4886it [2:31:43, 1.36s/it]
4887it [2:31:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4888it [2:31:46, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4889it [2:31:50, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4890it [2:31:51, 1.97s/it]
4891it [2:31:53, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4892it [2:31:54, 1.71s/it]
4893it [2:31:56, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4894it [2:31:59, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4895it [2:32:00, 1.94s/it]
4896it [2:32:02, 1.74s/it]
4897it [2:32:03, 1.62s/it]
4898it [2:32:04, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4899it [2:32:06, 1.53s/it]
4900it [2:32:07, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4901it [2:32:12, 2.42s/it]
4902it [2:32:13, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4903it [2:32:15, 1.91s/it]
4904it [2:32:16, 1.73s/it]
4905it [2:32:17, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4906it [2:32:19, 1.57s/it]
4907it [2:32:20, 1.49s/it]
4908it [2:32:21, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4909it [2:32:23, 1.45s/it]
4910it [2:32:24, 1.41s/it]
4911it [2:32:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4912it [2:32:33, 3.15s/it]
4913it [2:32:34, 2.60s/it]
4914it [2:32:35, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4915it [2:32:40, 3.01s/it]
4916it [2:32:42, 2.50s/it]
4917it [2:32:43, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4918it [2:32:44, 1.95s/it]
4919it [2:32:46, 1.75s/it]
4920it [2:32:47, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4921it [2:32:48, 1.57s/it]
4922it [2:32:50, 1.49s/it]
4923it [2:32:51, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4924it [2:32:53, 1.46s/it]
4925it [2:32:54, 1.42s/it]
4926it [2:32:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4927it [2:32:57, 1.42s/it]
4928it [2:32:58, 1.39s/it]
4929it [2:32:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4930it [2:33:01, 1.40s/it]
4931it [2:33:02, 1.38s/it]
4932it [2:33:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4933it [2:33:05, 1.39s/it]
4934it [2:33:06, 1.37s/it]
4935it [2:33:07, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4936it [2:33:09, 1.39s/it]
4937it [2:33:10, 1.37s/it]
4938it [2:33:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4939it [2:33:17, 2.49s/it]
4940it [2:33:18, 2.13s/it]
4941it [2:33:19, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4942it [2:33:21, 1.76s/it]
4943it [2:33:22, 1.62s/it]
4944it [2:33:23, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4945it [2:33:25, 1.66s/it]
4946it [2:33:27, 1.56s/it]
4947it [2:33:28, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4948it [2:33:34, 2.76s/it]
4949it [2:33:35, 2.33s/it]
4950it [2:33:36, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4951it [2:33:38, 1.84s/it]
4952it [2:33:39, 1.69s/it]
4953it [2:33:40, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4954it [2:33:42, 1.55s/it]
4955it [2:33:43, 1.49s/it]
4956it [2:33:45, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4957it [2:33:46, 1.47s/it]
4958it [2:33:47, 1.42s/it]
4959it [2:33:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4960it [2:33:50, 1.42s/it]
4961it [2:33:52, 1.38s/it]
4962it [2:33:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4963it [2:33:54, 1.37s/it]
4964it [2:33:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4965it [2:33:57, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4966it [2:33:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4967it [2:34:00, 1.44s/it]
4968it [2:34:01, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4969it [2:34:03, 1.42s/it]
4970it [2:34:04, 1.38s/it]
4971it [2:34:05, 1.35s/it]
4972it [2:34:07, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4973it [2:34:08, 1.36s/it]
4974it [2:34:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4975it [2:34:11, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4976it [2:34:12, 1.43s/it]
4977it [2:34:14, 1.40s/it]
4978it [2:34:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4979it [2:34:17, 1.44s/it]
4980it [2:34:18, 1.39s/it]
4981it [2:34:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4982it [2:34:21, 1.42s/it]
4983it [2:34:22, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4984it [2:34:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4985it [2:34:25, 1.42s/it]
4986it [2:34:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4987it [2:34:28, 1.42s/it]
4988it [2:34:29, 1.39s/it]
4989it [2:34:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4990it [2:34:32, 1.39s/it]
4991it [2:34:33, 1.37s/it]
4992it [2:34:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4993it [2:34:36, 1.37s/it]
4994it [2:34:37, 1.35s/it]
4995it [2:34:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4996it [2:34:40, 1.36s/it]
4997it [2:34:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4998it [2:34:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4999it [2:34:44, 1.39s/it]
5000it [2:34:45, 1.36s/it]
5001it [2:34:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5002it [2:34:48, 1.37s/it]
5003it [2:34:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5004it [2:34:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5005it [2:34:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5006it [2:34:56, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5007it [2:34:59, 2.27s/it]
5008it [2:35:00, 1.97s/it]
5009it [2:35:01, 1.77s/it]
5010it [2:35:03, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5011it [2:35:04, 1.59s/it]
5012it [2:35:05, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5013it [2:35:13, 3.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5014it [2:35:19, 3.99s/it]
5015it [2:35:20, 3.19s/it]
5016it [2:35:21, 2.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5017it [2:35:28, 3.80s/it]
5018it [2:35:29, 3.05s/it]
5019it [2:35:30, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5020it [2:35:32, 2.22s/it]
5021it [2:35:33, 1.95s/it]
5022it [2:35:34, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5023it [2:35:36, 1.68s/it]
5024it [2:35:37, 1.57s/it]
5025it [2:35:39, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5026it [2:35:40, 1.51s/it]
5027it [2:35:41, 1.46s/it]
5028it [2:35:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5029it [2:35:44, 1.45s/it]
5030it [2:35:46, 1.40s/it]
5031it [2:35:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5032it [2:35:48, 1.40s/it]
5033it [2:35:50, 1.38s/it]
5034it [2:35:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5035it [2:35:52, 1.38s/it]
5036it [2:35:54, 1.35s/it]
5037it [2:35:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5038it [2:35:56, 1.37s/it]
5039it [2:35:58, 1.35s/it]
5040it [2:35:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5041it [2:36:01, 1.39s/it]
5042it [2:36:02, 1.36s/it]
5043it [2:36:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5044it [2:36:05, 1.38s/it]
5045it [2:36:06, 1.35s/it]
5046it [2:36:07, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5047it [2:36:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5048it [2:36:10, 1.36s/it]
5049it [2:36:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5050it [2:36:13, 1.37s/it]
5051it [2:36:14, 1.36s/it]
5052it [2:36:15, 1.34s/it]
5053it [2:36:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5054it [2:36:18, 1.36s/it]
5055it [2:36:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5056it [2:36:21, 1.36s/it]
5057it [2:36:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5058it [2:36:24, 1.39s/it]
5059it [2:36:25, 1.37s/it]
5060it [2:36:26, 1.36s/it]
5061it [2:36:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5062it [2:36:29, 1.38s/it]
5063it [2:36:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5064it [2:36:33, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5065it [2:36:34, 1.62s/it]
5066it [2:36:36, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5067it [2:36:37, 1.50s/it]
5068it [2:36:38, 1.44s/it]
5069it [2:36:40, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5070it [2:36:41, 1.43s/it]
5071it [2:36:42, 1.40s/it]
5072it [2:36:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5073it [2:36:45, 1.41s/it]
5074it [2:36:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5075it [2:36:49, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5076it [2:36:50, 1.55s/it]
5077it [2:36:51, 1.47s/it]
5078it [2:36:53, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5079it [2:36:54, 1.44s/it]
5080it [2:36:55, 1.40s/it]
5081it [2:36:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5082it [2:36:58, 1.41s/it]
5083it [2:37:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5084it [2:37:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5085it [2:37:02, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5086it [2:37:04, 1.41s/it]
5087it [2:37:05, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5088it [2:37:07, 1.41s/it]
5089it [2:37:08, 1.39s/it]
5090it [2:37:09, 1.36s/it]
5091it [2:37:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5092it [2:37:12, 1.40s/it]
5093it [2:37:13, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5094it [2:37:15, 1.43s/it]
5095it [2:37:16, 1.39s/it]
5096it [2:37:18, 1.36s/it]
5097it [2:37:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5098it [2:37:21, 1.45s/it]
5099it [2:37:22, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5100it [2:37:23, 1.41s/it]
5101it [2:37:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5102it [2:37:26, 1.42s/it]
5103it [2:37:27, 1.39s/it]
5104it [2:37:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5105it [2:37:30, 1.40s/it]
5106it [2:37:32, 1.38s/it]
5107it [2:37:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5108it [2:37:34, 1.40s/it]
5109it [2:37:36, 1.37s/it]
5110it [2:37:37, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5111it [2:37:38, 1.37s/it]
5112it [2:37:40, 1.35s/it]
5113it [2:37:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5114it [2:37:42, 1.37s/it]
5115it [2:37:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5116it [2:37:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5117it [2:37:47, 1.40s/it]
5118it [2:37:48, 1.38s/it]
5119it [2:37:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5120it [2:37:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5121it [2:37:52, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5122it [2:37:54, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5123it [2:37:56, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5124it [2:37:57, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5125it [2:37:59, 1.69s/it]
5126it [2:38:00, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5127it [2:38:02, 1.66s/it]
5128it [2:38:04, 1.56s/it]
5129it [2:38:05, 1.50s/it]
5130it [2:38:06, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5131it [2:38:08, 1.44s/it]
5132it [2:38:09, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5133it [2:38:11, 1.48s/it]
5134it [2:38:12, 1.44s/it]
5135it [2:38:13, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5136it [2:38:15, 1.44s/it]
5137it [2:38:16, 1.40s/it]
5138it [2:38:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5139it [2:38:19, 1.40s/it]
5140it [2:38:20, 1.38s/it]
5141it [2:38:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5142it [2:38:24, 1.58s/it]
5143it [2:38:25, 1.50s/it]
5144it [2:38:26, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5145it [2:38:28, 1.45s/it]
5146it [2:38:29, 1.41s/it]
5147it [2:38:30, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5148it [2:38:32, 1.41s/it]
5149it [2:38:33, 1.38s/it]
5150it [2:38:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5151it [2:38:36, 1.41s/it]
5152it [2:38:37, 1.38s/it]
5153it [2:38:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5154it [2:38:40, 1.37s/it]
5155it [2:38:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5156it [2:38:43, 1.53s/it]
5157it [2:38:45, 1.47s/it]
5158it [2:38:46, 1.44s/it]
5159it [2:38:47, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5160it [2:38:49, 1.45s/it]
5161it [2:38:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5162it [2:38:52, 1.56s/it]
5163it [2:38:53, 1.49s/it]
5164it [2:38:55, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5165it [2:38:56, 1.44s/it]
5166it [2:38:57, 1.40s/it]
5167it [2:38:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5168it [2:39:00, 1.40s/it]
5169it [2:39:01, 1.37s/it]
5170it [2:39:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5171it [2:39:04, 1.39s/it]
5172it [2:39:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5173it [2:39:11, 2.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5174it [2:39:13, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5175it [2:39:15, 2.17s/it]
5176it [2:39:16, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5177it [2:39:17, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5178it [2:39:19, 1.70s/it]
5179it [2:39:20, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5180it [2:39:22, 1.56s/it]
5181it [2:39:23, 1.49s/it]
5182it [2:39:24, 1.43s/it]
5183it [2:39:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5184it [2:39:27, 1.40s/it]
5185it [2:39:28, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5186it [2:39:30, 1.42s/it]
5187it [2:39:31, 1.38s/it]
5188it [2:39:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5189it [2:39:34, 1.38s/it]
5190it [2:39:35, 1.36s/it]
5191it [2:39:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5192it [2:39:38, 1.38s/it]
5193it [2:39:39, 1.36s/it]
5194it [2:39:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5195it [2:39:42, 1.39s/it]
5196it [2:39:43, 1.37s/it]
5197it [2:39:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5198it [2:39:46, 1.40s/it]
5199it [2:39:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5200it [2:39:51, 1.84s/it]
5201it [2:39:52, 1.68s/it]
5202it [2:39:53, 1.57s/it]
5203it [2:39:54, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5204it [2:39:56, 1.49s/it]
5205it [2:39:57, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5206it [2:39:59, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5207it [2:40:01, 1.59s/it]
5208it [2:40:02, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5209it [2:40:04, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5210it [2:40:05, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5211it [2:40:06, 1.46s/it]
5212it [2:40:08, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5213it [2:40:09, 1.45s/it]
5214it [2:40:11, 1.41s/it]
5215it [2:40:12, 1.38s/it]
5216it [2:40:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5217it [2:40:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5218it [2:40:17, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5219it [2:40:21, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5220it [2:40:26, 3.01s/it]
5221it [2:40:27, 2.50s/it]
5222it [2:40:28, 2.15s/it]
5223it [2:40:30, 1.89s/it]
5224it [2:40:31, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5225it [2:40:32, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5226it [2:40:37, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5227it [2:40:38, 2.17s/it]
5228it [2:40:39, 1.91s/it]
5229it [2:40:41, 1.73s/it]
5230it [2:40:42, 1.60s/it]
5231it [2:40:43, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5232it [2:40:45, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5233it [2:40:48, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5234it [2:40:49, 1.79s/it]
5235it [2:40:51, 1.65s/it]
5236it [2:40:52, 1.55s/it]
5237it [2:40:53, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5238it [2:40:55, 1.47s/it]
5239it [2:40:56, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5240it [2:40:58, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5241it [2:41:00, 1.61s/it]
5242it [2:41:01, 1.51s/it]
5243it [2:41:02, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5244it [2:41:04, 1.45s/it]
5245it [2:41:05, 1.41s/it]
5246it [2:41:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5247it [2:41:08, 1.41s/it]
5248it [2:41:09, 1.39s/it]
5249it [2:41:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5250it [2:41:12, 1.42s/it]
5251it [2:41:13, 1.39s/it]
5252it [2:41:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5253it [2:41:16, 1.39s/it]
5254it [2:41:17, 1.37s/it]
5255it [2:41:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5256it [2:41:20, 1.39s/it]
5257it [2:41:22, 1.37s/it]
5258it [2:41:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5259it [2:41:24, 1.42s/it]
5260it [2:41:26, 1.39s/it]
5261it [2:41:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5262it [2:41:34, 2.93s/it]
5263it [2:41:35, 2.44s/it]
5264it [2:41:36, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5265it [2:41:38, 1.93s/it]
5266it [2:41:39, 1.74s/it]
5267it [2:41:40, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5268it [2:41:46, 2.81s/it]
5269it [2:41:47, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5270it [2:41:49, 2.11s/it]
5271it [2:41:50, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5272it [2:41:52, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5273it [2:41:56, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5274it [2:41:58, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5275it [2:41:59, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5276it [2:42:01, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5277it [2:42:02, 1.77s/it]
5278it [2:42:03, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5279it [2:42:05, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5280it [2:42:06, 1.54s/it]
5281it [2:42:08, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5282it [2:42:09, 1.49s/it]
5283it [2:42:10, 1.43s/it]
5284it [2:42:12, 1.40s/it]
5285it [2:42:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5286it [2:42:15, 1.40s/it]
5287it [2:42:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5288it [2:42:17, 1.39s/it]
5289it [2:42:19, 1.38s/it]
5290it [2:42:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5291it [2:42:21, 1.40s/it]
5292it [2:42:23, 1.37s/it]
5293it [2:42:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5294it [2:42:26, 1.40s/it]
5295it [2:42:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5296it [2:42:28, 1.43s/it]
5297it [2:42:30, 1.40s/it]
5298it [2:42:31, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5299it [2:42:34, 1.90s/it]
5300it [2:42:36, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5301it [2:42:37, 1.67s/it]
5302it [2:42:38, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5303it [2:42:40, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5304it [2:42:41, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5305it [2:42:43, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5306it [2:42:45, 1.57s/it]
5307it [2:42:46, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5308it [2:42:47, 1.49s/it]
5309it [2:42:49, 1.44s/it]
5310it [2:42:50, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5311it [2:42:51, 1.40s/it]
5312it [2:42:53, 1.37s/it]
5313it [2:42:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5314it [2:42:56, 1.38s/it]
5315it [2:42:57, 1.36s/it]
5316it [2:42:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5317it [2:43:00, 1.37s/it]
5318it [2:43:01, 1.35s/it]
5319it [2:43:02, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5320it [2:43:04, 1.39s/it]
5321it [2:43:05, 1.36s/it]
5322it [2:43:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5323it [2:43:08, 1.42s/it]
5324it [2:43:09, 1.38s/it]
5325it [2:43:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5326it [2:43:12, 1.41s/it]
5327it [2:43:13, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5328it [2:43:15, 1.41s/it]
5329it [2:43:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5330it [2:43:18, 1.41s/it]
5331it [2:43:19, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5332it [2:43:22, 1.94s/it]
5333it [2:43:23, 1.75s/it]
5334it [2:43:25, 1.62s/it]
5335it [2:43:26, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5336it [2:43:28, 1.50s/it]
5337it [2:43:29, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5338it [2:43:30, 1.46s/it]
5339it [2:43:32, 1.41s/it]
5340it [2:43:33, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5341it [2:43:34, 1.40s/it]
5342it [2:43:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5343it [2:43:39, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5344it [2:43:40, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5345it [2:43:42, 1.69s/it]
5346it [2:43:43, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5347it [2:43:45, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5348it [2:43:46, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5349it [2:43:48, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5350it [2:43:51, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5351it [2:43:53, 2.02s/it]
5352it [2:43:54, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5353it [2:43:56, 1.74s/it]
5354it [2:43:57, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5355it [2:43:59, 1.58s/it]
5356it [2:44:00, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5357it [2:44:02, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5358it [2:44:03, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5359it [2:44:05, 1.50s/it]
5360it [2:44:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5361it [2:44:08, 1.66s/it]
5362it [2:44:09, 1.56s/it]
5363it [2:44:11, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5364it [2:44:12, 1.51s/it]
5365it [2:44:14, 1.44s/it]
5366it [2:44:15, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5367it [2:44:16, 1.44s/it]
5368it [2:44:18, 1.40s/it]
5369it [2:44:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5370it [2:44:20, 1.39s/it]
5371it [2:44:22, 1.37s/it]
5372it [2:44:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5373it [2:44:24, 1.39s/it]
5374it [2:44:26, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5375it [2:44:27, 1.39s/it]
5376it [2:44:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5377it [2:44:30, 1.40s/it]
5378it [2:44:31, 1.39s/it]
5379it [2:44:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5380it [2:44:34, 1.41s/it]
5381it [2:44:36, 1.38s/it]
5382it [2:44:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5383it [2:44:38, 1.39s/it]
5384it [2:44:40, 1.36s/it]
5385it [2:44:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5386it [2:44:42, 1.37s/it]
5387it [2:44:44, 1.35s/it]
5388it [2:44:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5389it [2:44:47, 1.40s/it]
5390it [2:44:48, 1.37s/it]
5391it [2:44:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5392it [2:44:51, 1.38s/it]
5393it [2:44:52, 1.35s/it]
5394it [2:44:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5395it [2:44:55, 1.38s/it]
5396it [2:44:56, 1.36s/it]
5397it [2:44:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5398it [2:44:59, 1.38s/it]
5399it [2:45:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5400it [2:45:01, 1.38s/it]
5401it [2:45:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5402it [2:45:04, 1.39s/it]
5403it [2:45:06, 1.36s/it]
5404it [2:45:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5405it [2:45:08, 1.40s/it]
5406it [2:45:10, 1.37s/it]
5407it [2:45:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5408it [2:45:12, 1.39s/it]
5409it [2:45:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5410it [2:45:20, 2.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5411it [2:45:22, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5412it [2:45:23, 2.23s/it]
5413it [2:45:25, 1.97s/it]
5414it [2:45:26, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5415it [2:45:28, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5416it [2:45:29, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5417it [2:45:31, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5418it [2:45:33, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5419it [2:45:34, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5420it [2:45:35, 1.55s/it]
5421it [2:45:37, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5422it [2:45:38, 1.48s/it]
5423it [2:45:40, 1.42s/it]
5424it [2:45:41, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5425it [2:45:42, 1.41s/it]
5426it [2:45:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5427it [2:45:45, 1.41s/it]
5428it [2:45:46, 1.37s/it]
5429it [2:45:48, 1.35s/it]
5430it [2:45:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5431it [2:45:50, 1.39s/it]
5432it [2:45:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5433it [2:45:54, 1.57s/it]
5434it [2:45:55, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5435it [2:45:57, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5436it [2:45:58, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5437it [2:45:59, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5438it [2:46:05, 2.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5439it [2:46:06, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5440it [2:46:08, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5441it [2:46:09, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5442it [2:46:11, 1.72s/it]
5443it [2:46:12, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5444it [2:46:13, 1.55s/it]
5445it [2:46:15, 1.48s/it]
5446it [2:46:16, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5447it [2:46:17, 1.44s/it]
5448it [2:46:19, 1.41s/it]
5449it [2:46:20, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5450it [2:46:22, 1.41s/it]
5451it [2:46:23, 1.38s/it]
5452it [2:46:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5453it [2:46:26, 1.39s/it]
5454it [2:46:27, 1.37s/it]
5455it [2:46:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5456it [2:46:30, 1.38s/it]
5457it [2:46:31, 1.35s/it]
5458it [2:46:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5459it [2:46:34, 1.44s/it]
5460it [2:46:35, 1.40s/it]
5461it [2:46:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5462it [2:46:38, 1.39s/it]
5463it [2:46:39, 1.37s/it]
5464it [2:46:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5465it [2:46:42, 1.38s/it]
5466it [2:46:43, 1.37s/it]
5467it [2:46:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5468it [2:46:47, 1.77s/it]
5469it [2:46:49, 1.63s/it]
5470it [2:46:50, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5471it [2:46:52, 1.51s/it]
5472it [2:46:53, 1.44s/it]
5473it [2:46:54, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5474it [2:46:56, 1.42s/it]
5475it [2:46:57, 1.39s/it]
5476it [2:46:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5477it [2:47:00, 1.42s/it]
5478it [2:47:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5479it [2:47:03, 1.41s/it]
5480it [2:47:04, 1.38s/it]
5481it [2:47:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5482it [2:47:07, 1.40s/it]
5483it [2:47:08, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5484it [2:47:11, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5485it [2:47:14, 2.28s/it]
5486it [2:47:16, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5487it [2:47:17, 1.85s/it]
5488it [2:47:18, 1.69s/it]
5489it [2:47:20, 1.57s/it]
5490it [2:47:21, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5491it [2:47:23, 1.48s/it]
5492it [2:47:24, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5493it [2:47:25, 1.45s/it]
5494it [2:47:27, 1.40s/it]
5495it [2:47:28, 1.37s/it]
5496it [2:47:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5497it [2:47:31, 1.38s/it]
5498it [2:47:32, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5499it [2:47:33, 1.40s/it]
5500it [2:47:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5501it [2:47:36, 1.39s/it]
5502it [2:47:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5503it [2:47:39, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5504it [2:47:41, 1.43s/it]
5505it [2:47:42, 1.39s/it]
5506it [2:47:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5507it [2:47:45, 1.41s/it]
5508it [2:47:46, 1.39s/it]
5509it [2:47:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5510it [2:47:49, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5511it [2:47:50, 1.46s/it]
5512it [2:47:52, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5513it [2:47:53, 1.44s/it]
5514it [2:47:55, 1.40s/it]
5515it [2:47:56, 1.37s/it]
5516it [2:47:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5517it [2:47:59, 1.38s/it]
5518it [2:48:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5519it [2:48:01, 1.39s/it]
5520it [2:48:03, 1.37s/it]
5521it [2:48:04, 1.35s/it]
5522it [2:48:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5523it [2:48:07, 1.37s/it]
5524it [2:48:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5525it [2:48:10, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5526it [2:48:12, 1.62s/it]
5527it [2:48:13, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5528it [2:48:15, 1.50s/it]
5529it [2:48:16, 1.44s/it]
5530it [2:48:17, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5531it [2:48:19, 1.42s/it]
5532it [2:48:20, 1.38s/it]
5533it [2:48:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5534it [2:48:23, 1.39s/it]
5535it [2:48:24, 1.36s/it]
5536it [2:48:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5537it [2:48:27, 1.38s/it]
5538it [2:48:28, 1.36s/it]
5539it [2:48:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5540it [2:48:31, 1.39s/it]
5541it [2:48:32, 1.36s/it]
5542it [2:48:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5543it [2:48:35, 1.39s/it]
5544it [2:48:37, 1.37s/it]
5545it [2:48:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5546it [2:48:39, 1.39s/it]
5547it [2:48:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5548it [2:48:42, 1.39s/it]
5549it [2:48:43, 1.37s/it]
5550it [2:48:45, 1.35s/it]
5551it [2:48:46, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5552it [2:48:47, 1.36s/it]
5553it [2:48:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5554it [2:48:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5555it [2:48:52, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5556it [2:48:53, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5557it [2:48:55, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5558it [2:48:56, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5559it [2:49:00, 2.30s/it]
5560it [2:49:02, 2.00s/it]
5561it [2:49:03, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5562it [2:49:04, 1.68s/it]
5563it [2:49:06, 1.56s/it]
5564it [2:49:07, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5565it [2:49:08, 1.47s/it]
5566it [2:49:10, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5567it [2:49:12, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5568it [2:49:18, 3.04s/it]
5569it [2:49:20, 2.52s/it]
5570it [2:49:21, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5571it [2:49:22, 1.96s/it]
5572it [2:49:24, 1.77s/it]
5573it [2:49:25, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5574it [2:49:27, 1.60s/it]
5575it [2:49:28, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5576it [2:49:29, 1.51s/it]
5577it [2:49:31, 1.45s/it]
5578it [2:49:32, 1.40s/it]
5579it [2:49:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5580it [2:49:35, 1.38s/it]
5581it [2:49:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5582it [2:49:37, 1.38s/it]
5583it [2:49:39, 1.36s/it]
5584it [2:49:40, 1.34s/it]
5585it [2:49:41, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5586it [2:49:43, 1.35s/it]
5587it [2:49:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5588it [2:49:45, 1.37s/it]
5589it [2:49:47, 1.35s/it]
5590it [2:49:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5591it [2:49:50, 1.37s/it]
5592it [2:49:51, 1.36s/it]
5593it [2:49:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5594it [2:49:54, 1.41s/it]
5595it [2:49:55, 1.39s/it]
5596it [2:49:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5597it [2:50:03, 3.00s/it]
5598it [2:50:05, 2.51s/it]
5599it [2:50:06, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5600it [2:50:07, 1.95s/it]
5601it [2:50:09, 1.76s/it]
5602it [2:50:10, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5603it [2:50:12, 1.60s/it]
5604it [2:50:13, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5605it [2:50:14, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5606it [2:50:16, 1.48s/it]
5607it [2:50:17, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5608it [2:50:19, 1.44s/it]
5609it [2:50:20, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5610it [2:50:21, 1.43s/it]
5611it [2:50:23, 1.39s/it]
5612it [2:50:24, 1.36s/it]
5613it [2:50:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5614it [2:50:27, 1.36s/it]
5615it [2:50:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5616it [2:50:30, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5617it [2:50:31, 1.44s/it]
5618it [2:50:32, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5619it [2:50:34, 1.46s/it]
5620it [2:50:35, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5621it [2:50:40, 2.41s/it]
5622it [2:50:41, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5623it [2:50:43, 1.92s/it]
5624it [2:50:44, 1.74s/it]
5625it [2:50:45, 1.61s/it]
5626it [2:50:47, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5627it [2:50:48, 1.49s/it]
5628it [2:50:50, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5629it [2:50:51, 1.45s/it]
5630it [2:50:52, 1.41s/it]
5631it [2:50:54, 1.38s/it]
5632it [2:50:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5633it [2:50:56, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5634it [2:50:59, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5635it [2:51:02, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5636it [2:51:03, 1.83s/it]
5637it [2:51:04, 1.68s/it]
5638it [2:51:06, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5639it [2:51:07, 1.55s/it]
5640it [2:51:08, 1.47s/it]
5641it [2:51:10, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5642it [2:51:11, 1.44s/it]
5643it [2:51:13, 1.40s/it]
5644it [2:51:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5645it [2:51:15, 1.39s/it]
5646it [2:51:17, 1.37s/it]
5647it [2:51:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5648it [2:51:22, 2.06s/it]
5649it [2:51:23, 1.84s/it]
5650it [2:51:24, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5651it [2:51:26, 1.60s/it]
5652it [2:51:27, 1.52s/it]
5653it [2:51:28, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5654it [2:51:30, 1.48s/it]
5655it [2:51:31, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5656it [2:51:33, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5657it [2:51:35, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5658it [2:51:36, 1.60s/it]
5659it [2:51:38, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5660it [2:51:39, 1.50s/it]
5661it [2:51:41, 1.44s/it]
5662it [2:51:42, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5663it [2:51:43, 1.41s/it]
5664it [2:51:45, 1.38s/it]
5665it [2:51:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5666it [2:51:47, 1.38s/it]
5667it [2:51:49, 1.35s/it]
5668it [2:51:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5669it [2:51:51, 1.35s/it]
5670it [2:51:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5671it [2:51:54, 1.40s/it]
5672it [2:51:55, 1.37s/it]
5673it [2:51:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5674it [2:51:58, 1.38s/it]
5675it [2:51:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5676it [2:52:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5677it [2:52:02, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5678it [2:52:04, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5679it [2:52:06, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5680it [2:52:08, 1.66s/it]
5681it [2:52:09, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5682it [2:52:11, 1.52s/it]
5683it [2:52:12, 1.45s/it]
5684it [2:52:13, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5685it [2:52:15, 1.42s/it]
5686it [2:52:16, 1.39s/it]
5687it [2:52:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5688it [2:52:19, 1.39s/it]
5689it [2:52:20, 1.37s/it]
5690it [2:52:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5691it [2:52:23, 1.36s/it]
5692it [2:52:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5693it [2:52:26, 1.38s/it]
5694it [2:52:27, 1.36s/it]
5695it [2:52:28, 1.35s/it]
5696it [2:52:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5697it [2:52:31, 1.37s/it]
5698it [2:52:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5699it [2:52:34, 1.62s/it]
5700it [2:52:36, 1.54s/it]
5701it [2:52:37, 1.48s/it]
5702it [2:52:38, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5703it [2:52:40, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5704it [2:52:43, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5705it [2:52:44, 1.69s/it]
5706it [2:52:45, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5707it [2:52:47, 1.56s/it]
5708it [2:52:48, 1.49s/it]
5709it [2:52:49, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5710it [2:52:51, 1.46s/it]
5711it [2:52:52, 1.42s/it]
5712it [2:52:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5713it [2:52:55, 1.43s/it]
5714it [2:52:56, 1.39s/it]
5715it [2:52:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5716it [2:52:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5717it [2:53:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5718it [2:53:03, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5719it [2:53:04, 1.61s/it]
5720it [2:53:06, 1.52s/it]
5721it [2:53:07, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5722it [2:53:08, 1.45s/it]
5723it [2:53:10, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5724it [2:53:11, 1.45s/it]
5725it [2:53:13, 1.41s/it]
5726it [2:53:14, 1.37s/it]
5727it [2:53:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5728it [2:53:17, 1.41s/it]
5729it [2:53:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5730it [2:53:20, 1.42s/it]
5731it [2:53:21, 1.39s/it]
5732it [2:53:22, 1.38s/it]
5733it [2:53:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5734it [2:53:25, 1.41s/it]
5735it [2:53:27, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5736it [2:53:29, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5737it [2:53:30, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5738it [2:53:32, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5739it [2:53:34, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5740it [2:53:35, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5741it [2:53:39, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5742it [2:53:40, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5743it [2:53:42, 1.87s/it]
5744it [2:53:43, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5745it [2:53:45, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5746it [2:53:47, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5747it [2:53:48, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5748it [2:53:50, 1.63s/it]
5749it [2:53:51, 1.54s/it]
5750it [2:53:53, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5751it [2:53:54, 1.48s/it]
5752it [2:53:55, 1.42s/it]
5753it [2:53:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5754it [2:53:58, 1.42s/it]
5755it [2:53:59, 1.39s/it]
5756it [2:54:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5757it [2:54:02, 1.39s/it]
5758it [2:54:04, 1.37s/it]
5759it [2:54:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5760it [2:54:06, 1.40s/it]
5761it [2:54:08, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5762it [2:54:09, 1.41s/it]
5763it [2:54:10, 1.38s/it]
5764it [2:54:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5765it [2:54:13, 1.41s/it]
5766it [2:54:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5767it [2:54:17, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5768it [2:54:19, 1.66s/it]
5769it [2:54:20, 1.56s/it]
5770it [2:54:21, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5771it [2:54:26, 2.30s/it]
5772it [2:54:27, 2.00s/it]
5773it [2:54:28, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5774it [2:54:30, 1.69s/it]
5775it [2:54:31, 1.58s/it]
5776it [2:54:32, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5777it [2:54:34, 1.51s/it]
5778it [2:54:35, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5779it [2:54:37, 1.46s/it]
5780it [2:54:38, 1.41s/it]
5781it [2:54:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5782it [2:54:41, 1.41s/it]
5783it [2:54:42, 1.38s/it]
5784it [2:54:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5785it [2:54:45, 1.40s/it]
5786it [2:54:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5787it [2:54:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5788it [2:54:49, 1.41s/it]
5789it [2:54:50, 1.38s/it]
5790it [2:54:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5791it [2:54:53, 1.40s/it]
5792it [2:54:54, 1.37s/it]
5793it [2:54:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5794it [2:54:57, 1.39s/it]
5795it [2:54:59, 1.37s/it]
5796it [2:55:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5797it [2:55:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5798it [2:55:03, 1.37s/it]
5799it [2:55:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5800it [2:55:05, 1.38s/it]
5801it [2:55:07, 1.36s/it]
5802it [2:55:08, 1.34s/it]
5803it [2:55:09, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5804it [2:55:11, 1.35s/it]
5805it [2:55:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5806it [2:55:13, 1.37s/it]
5807it [2:55:15, 1.36s/it]
5808it [2:55:16, 1.36s/it]
5809it [2:55:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5810it [2:55:19, 1.38s/it]
5811it [2:55:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5812it [2:55:22, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5813it [2:55:23, 1.49s/it]
5814it [2:55:25, 1.44s/it]
5815it [2:55:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5816it [2:55:27, 1.42s/it]
5817it [2:55:29, 1.39s/it]
5818it [2:55:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5819it [2:55:32, 1.38s/it]
5820it [2:55:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5821it [2:55:34, 1.40s/it]
5822it [2:55:36, 1.37s/it]
5823it [2:55:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5824it [2:55:39, 1.48s/it]
5825it [2:55:40, 1.43s/it]
5826it [2:55:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5827it [2:55:43, 1.42s/it]
5828it [2:55:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5829it [2:55:46, 1.42s/it]
5830it [2:55:47, 1.39s/it]
5831it [2:55:48, 1.37s/it]
5832it [2:55:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5833it [2:55:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5834it [2:55:54, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5835it [2:55:56, 1.84s/it]
5836it [2:55:57, 1.68s/it]
5837it [2:55:59, 1.56s/it]
5838it [2:56:00, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5839it [2:56:01, 1.48s/it]
5840it [2:56:03, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5841it [2:56:08, 2.62s/it]
5842it [2:56:09, 2.23s/it]
5843it [2:56:11, 1.95s/it]
5844it [2:56:12, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5845it [2:56:14, 1.70s/it]
5846it [2:56:15, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5847it [2:56:16, 1.56s/it]
5848it [2:56:18, 1.49s/it]
5849it [2:56:19, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5850it [2:56:21, 1.47s/it]
5851it [2:56:22, 1.42s/it]
5852it [2:56:23, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5853it [2:56:25, 1.40s/it]
5854it [2:56:26, 1.38s/it]
5855it [2:56:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5856it [2:56:29, 1.38s/it]
5857it [2:56:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5858it [2:56:32, 1.43s/it]
5859it [2:56:33, 1.42s/it]
5860it [2:56:34, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5861it [2:56:37, 1.80s/it]
5862it [2:56:38, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5863it [2:56:40, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5864it [2:56:42, 1.70s/it]
5865it [2:56:43, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5866it [2:56:47, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5867it [2:56:48, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5868it [2:56:50, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5869it [2:56:52, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5870it [2:56:53, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5871it [2:56:55, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5872it [2:56:56, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5873it [2:56:57, 1.53s/it]
5874it [2:56:59, 1.46s/it]
5875it [2:57:00, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5876it [2:57:02, 1.45s/it]
5877it [2:57:03, 1.41s/it]
5878it [2:57:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5879it [2:57:06, 1.43s/it]
5880it [2:57:07, 1.40s/it]
5881it [2:57:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5882it [2:57:10, 1.39s/it]
5883it [2:57:11, 1.36s/it]
5884it [2:57:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5885it [2:57:14, 1.38s/it]
5886it [2:57:15, 1.36s/it]
5887it [2:57:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5888it [2:57:18, 1.41s/it]
5889it [2:57:19, 1.39s/it]
5890it [2:57:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5891it [2:57:22, 1.40s/it]
5892it [2:57:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5893it [2:57:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5894it [2:57:26, 1.40s/it]
5895it [2:57:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5896it [2:57:29, 1.39s/it]
5897it [2:57:30, 1.36s/it]
5898it [2:57:32, 1.34s/it]
5899it [2:57:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5900it [2:57:34, 1.37s/it]
5901it [2:57:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5902it [2:57:38, 1.47s/it]
5903it [2:57:39, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5904it [2:57:40, 1.45s/it]
5905it [2:57:42, 1.41s/it]
5906it [2:57:43, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5907it [2:57:44, 1.42s/it]
5908it [2:57:46, 1.39s/it]
5909it [2:57:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5910it [2:57:49, 1.39s/it]
5911it [2:57:50, 1.36s/it]
5912it [2:57:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5913it [2:57:53, 1.43s/it]
5914it [2:57:54, 1.41s/it]
5915it [2:57:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5916it [2:57:57, 1.41s/it]
5917it [2:57:58, 1.38s/it]
5918it [2:58:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5919it [2:58:01, 1.39s/it]
5920it [2:58:02, 1.37s/it]
5921it [2:58:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5922it [2:58:06, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5923it [2:58:07, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5924it [2:58:09, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5925it [2:58:10, 1.51s/it]
5926it [2:58:11, 1.45s/it]
5927it [2:58:13, 1.40s/it]
5928it [2:58:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5929it [2:58:15, 1.39s/it]
5930it [2:58:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5931it [2:58:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5932it [2:58:20, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5933it [2:58:21, 1.39s/it]
5934it [2:58:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5935it [2:58:24, 1.40s/it]
5936it [2:58:25, 1.36s/it]
5937it [2:58:26, 1.34s/it]
5938it [2:58:28, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5939it [2:58:29, 1.35s/it]
5940it [2:58:30, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5941it [2:58:32, 1.46s/it]
5942it [2:58:33, 1.40s/it]
5943it [2:58:35, 1.38s/it]
5944it [2:58:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5945it [2:58:37, 1.39s/it]
5946it [2:58:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5947it [2:58:40, 1.41s/it]
5948it [2:58:42, 1.38s/it]
5949it [2:58:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5950it [2:58:44, 1.39s/it]
5951it [2:58:46, 1.37s/it]
5952it [2:58:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5953it [2:58:48, 1.37s/it]
5954it [2:58:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5955it [2:58:51, 1.37s/it]
5956it [2:58:52, 1.34s/it]
5957it [2:58:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5958it [2:58:55, 1.37s/it]
5959it [2:58:56, 1.35s/it]
5960it [2:58:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5961it [2:58:59, 1.38s/it]
5962it [2:59:01, 1.36s/it]
5963it [2:59:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5964it [2:59:03, 1.39s/it]
5965it [2:59:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5966it [2:59:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5967it [2:59:08, 1.44s/it]
5968it [2:59:09, 1.40s/it]
5969it [2:59:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5970it [2:59:12, 1.40s/it]
5971it [2:59:13, 1.38s/it]
5972it [2:59:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5973it [2:59:16, 1.39s/it]
5974it [2:59:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5975it [2:59:19, 1.41s/it]
5976it [2:59:20, 1.38s/it]
5977it [2:59:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5978it [2:59:23, 1.42s/it]
5979it [2:59:24, 1.38s/it]
5980it [2:59:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5981it [2:59:27, 1.40s/it]
5982it [2:59:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5983it [2:59:31, 1.78s/it]
5984it [2:59:32, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5985it [2:59:34, 1.60s/it]
5986it [2:59:35, 1.51s/it]
5987it [2:59:36, 1.45s/it]
5988it [2:59:38, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5989it [2:59:39, 1.45s/it]
5990it [2:59:41, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5991it [2:59:42, 1.41s/it]
5992it [2:59:43, 1.38s/it]
5993it [2:59:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5994it [2:59:46, 1.40s/it]
5995it [2:59:47, 1.37s/it]
5996it [2:59:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5997it [2:59:50, 1.42s/it]
5998it [2:59:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5999it [2:59:53, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6000it [2:59:55, 1.55s/it]
6001it [2:59:56, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6002it [2:59:58, 1.47s/it]
6003it [2:59:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6004it [3:00:01, 1.43s/it]
6005it [3:00:02, 1.40s/it]
6006it [3:00:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6007it [3:00:05, 1.42s/it]
6008it [3:00:06, 1.40s/it]
6009it [3:00:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6010it [3:00:09, 1.41s/it]
6011it [3:00:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6012it [3:00:12, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6013it [3:00:13, 1.43s/it]
6014it [3:00:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6015it [3:00:16, 1.41s/it]
6016it [3:00:17, 1.38s/it]
6017it [3:00:19, 1.36s/it]
6018it [3:00:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6019it [3:00:21, 1.40s/it]
6020it [3:00:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6021it [3:00:24, 1.47s/it]
6022it [3:00:26, 1.43s/it]
6023it [3:00:27, 1.41s/it]
6024it [3:00:29, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6025it [3:00:30, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6026it [3:00:38, 3.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6027it [3:00:40, 3.00s/it]
6028it [3:00:42, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6029it [3:00:43, 2.25s/it]
6030it [3:00:45, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6031it [3:00:49, 2.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6032it [3:00:52, 2.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6033it [3:00:55, 2.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6034it [3:01:00, 3.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6035it [3:01:02, 2.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6036it [3:01:03, 2.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6037it [3:01:05, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6038it [3:01:11, 3.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6039it [3:01:13, 2.90s/it]
6040it [3:01:14, 2.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6041it [3:01:16, 2.16s/it]
6042it [3:01:17, 1.91s/it]
6043it [3:01:18, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6044it [3:01:20, 1.65s/it]
6045it [3:01:21, 1.55s/it]
6046it [3:01:22, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6047it [3:01:24, 1.45s/it]
6048it [3:01:25, 1.41s/it]
6049it [3:01:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6050it [3:01:28, 1.42s/it]
6051it [3:01:29, 1.39s/it]
6052it [3:01:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6053it [3:01:32, 1.39s/it]
6054it [3:01:33, 1.36s/it]
6055it [3:01:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6056it [3:01:36, 1.41s/it]
6057it [3:01:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6058it [3:01:39, 1.39s/it]
6059it [3:01:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6060it [3:01:42, 1.46s/it]
6061it [3:01:43, 1.41s/it]
6062it [3:01:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6063it [3:01:46, 1.42s/it]
6064it [3:01:47, 1.40s/it]
6065it [3:01:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6066it [3:01:50, 1.41s/it]
6067it [3:01:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6068it [3:01:55, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6069it [3:01:57, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6070it [3:01:59, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6071it [3:02:00, 1.81s/it]
6072it [3:02:01, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6073it [3:02:03, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6074it [3:02:05, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6075it [3:02:06, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6076it [3:02:08, 1.57s/it]
6077it [3:02:09, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6078it [3:02:11, 1.50s/it]
6079it [3:02:12, 1.45s/it]
6080it [3:02:13, 1.41s/it]
6081it [3:02:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6082it [3:02:16, 1.41s/it]
6083it [3:02:17, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6084it [3:02:21, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6085it [3:02:23, 2.04s/it]
6086it [3:02:24, 1.82s/it]
6087it [3:02:26, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6088it [3:02:27, 1.60s/it]
6089it [3:02:28, 1.51s/it]
6090it [3:02:30, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6091it [3:02:31, 1.44s/it]
6092it [3:02:32, 1.40s/it]
6093it [3:02:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6094it [3:02:35, 1.41s/it]
6095it [3:02:37, 1.39s/it]
6096it [3:02:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6097it [3:02:40, 1.54s/it]
6098it [3:02:41, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6099it [3:02:43, 1.48s/it]
6100it [3:02:44, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6101it [3:02:45, 1.45s/it]
6102it [3:02:47, 1.40s/it]
6103it [3:02:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6104it [3:02:49, 1.42s/it]
6105it [3:02:51, 1.39s/it]
6106it [3:02:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6107it [3:02:54, 1.40s/it]
6108it [3:02:55, 1.37s/it]
6109it [3:02:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6110it [3:02:58, 1.40s/it]
6111it [3:02:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6112it [3:03:00, 1.40s/it]
6113it [3:03:02, 1.38s/it]
6114it [3:03:03, 1.36s/it]
6115it [3:03:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6116it [3:03:06, 1.38s/it]
6117it [3:03:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6118it [3:03:09, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6119it [3:03:10, 1.48s/it]
6120it [3:03:12, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6121it [3:03:13, 1.45s/it]
6122it [3:03:15, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6123it [3:03:16, 1.43s/it]
6124it [3:03:17, 1.39s/it]
6125it [3:03:19, 1.36s/it]
6126it [3:03:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6127it [3:03:21, 1.37s/it]
6128it [3:03:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6129it [3:03:24, 1.39s/it]
6130it [3:03:25, 1.36s/it]
6131it [3:03:27, 1.35s/it]
6132it [3:03:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6133it [3:03:30, 1.37s/it]
6134it [3:03:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6135it [3:03:32, 1.39s/it]
6136it [3:03:34, 1.37s/it]
6137it [3:03:35, 1.35s/it]
6138it [3:03:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6139it [3:03:38, 1.37s/it]
6140it [3:03:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6141it [3:03:41, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6142it [3:03:43, 1.59s/it]
6143it [3:03:44, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6144it [3:03:46, 1.50s/it]
6145it [3:03:47, 1.44s/it]
6146it [3:03:48, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6147it [3:03:50, 1.41s/it]
6148it [3:03:51, 1.38s/it]
6149it [3:03:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6150it [3:03:54, 1.38s/it]
6151it [3:03:55, 1.36s/it]
6152it [3:03:56, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6153it [3:03:58, 1.39s/it]
6154it [3:03:59, 1.36s/it]
6155it [3:04:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6156it [3:04:02, 1.42s/it]
6157it [3:04:03, 1.39s/it]
6158it [3:04:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6159it [3:04:06, 1.42s/it]
6160it [3:04:08, 1.39s/it]
6161it [3:04:09, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6162it [3:04:10, 1.43s/it]
6163it [3:04:12, 1.40s/it]
6164it [3:04:13, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6165it [3:04:15, 1.41s/it]
6166it [3:04:16, 1.38s/it]
6167it [3:04:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6168it [3:04:19, 1.39s/it]
6169it [3:04:20, 1.37s/it]
6170it [3:04:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6171it [3:04:23, 1.38s/it]
6172it [3:04:24, 1.37s/it]
6173it [3:04:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6174it [3:04:27, 1.40s/it]
6175it [3:04:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6176it [3:04:32, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6177it [3:04:34, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6178it [3:04:36, 2.17s/it]
6179it [3:04:38, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6180it [3:04:39, 1.80s/it]
6181it [3:04:41, 1.66s/it]
6182it [3:04:42, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6183it [3:04:43, 1.51s/it]
6184it [3:04:45, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6185it [3:04:46, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6186it [3:04:47, 1.43s/it]
6187it [3:04:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6188it [3:04:50, 1.41s/it]
6189it [3:04:52, 1.38s/it]
6190it [3:04:53, 1.36s/it]
6191it [3:04:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6192it [3:04:56, 1.37s/it]
6193it [3:04:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6194it [3:04:58, 1.41s/it]
6195it [3:05:00, 1.38s/it]
6196it [3:05:01, 1.35s/it]
6197it [3:05:02, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6198it [3:05:04, 1.36s/it]
6199it [3:05:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6200it [3:05:07, 1.42s/it]
6201it [3:05:08, 1.39s/it]
6202it [3:05:09, 1.37s/it]
6203it [3:05:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6204it [3:05:12, 1.39s/it]
6205it [3:05:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6206it [3:05:15, 1.38s/it]
6207it [3:05:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6208it [3:05:18, 1.40s/it]
6209it [3:05:19, 1.37s/it]
6210it [3:05:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6211it [3:05:22, 1.39s/it]
6212it [3:05:23, 1.37s/it]
6213it [3:05:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6214it [3:05:26, 1.40s/it]
6215it [3:05:27, 1.37s/it]
6216it [3:05:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6217it [3:05:30, 1.38s/it]
6218it [3:05:31, 1.37s/it]
6219it [3:05:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6220it [3:05:34, 1.40s/it]
6221it [3:05:35, 1.37s/it]
6222it [3:05:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6223it [3:05:38, 1.46s/it]
6224it [3:05:40, 1.42s/it]
6225it [3:05:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6226it [3:05:43, 1.46s/it]
6227it [3:05:44, 1.42s/it]
6228it [3:05:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6229it [3:05:47, 1.40s/it]
6230it [3:05:48, 1.38s/it]
6231it [3:05:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6232it [3:05:51, 1.37s/it]
6233it [3:05:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6234it [3:05:54, 1.40s/it]
6235it [3:05:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6236it [3:05:56, 1.44s/it]
6237it [3:05:58, 1.40s/it]
6238it [3:05:59, 1.38s/it]
6239it [3:06:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6240it [3:06:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6241it [3:06:04, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6242it [3:06:06, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6243it [3:06:07, 1.60s/it]
6244it [3:06:09, 1.51s/it]
6245it [3:06:10, 1.44s/it]
6246it [3:06:11, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6247it [3:06:13, 1.43s/it]
6248it [3:06:14, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6249it [3:06:17, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6250it [3:06:18, 1.67s/it]
6251it [3:06:19, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6252it [3:06:21, 1.57s/it]
6253it [3:06:22, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6254it [3:06:24, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6255it [3:06:25, 1.48s/it]
6256it [3:06:26, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6257it [3:06:30, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6258it [3:06:31, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6259it [3:06:33, 1.72s/it]
6260it [3:06:34, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6261it [3:06:36, 1.62s/it]
6262it [3:06:37, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6263it [3:06:39, 1.53s/it]
6264it [3:06:40, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6265it [3:06:41, 1.47s/it]
6266it [3:06:43, 1.42s/it]
6267it [3:06:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6268it [3:06:45, 1.40s/it]
6269it [3:06:47, 1.37s/it]
6270it [3:06:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6271it [3:06:50, 1.39s/it]
6272it [3:06:51, 1.37s/it]
6273it [3:06:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6274it [3:06:54, 1.40s/it]
6275it [3:06:55, 1.38s/it]
6276it [3:06:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6277it [3:06:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6278it [3:07:00, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6279it [3:07:04, 2.36s/it]
6280it [3:07:05, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6281it [3:07:11, 3.10s/it]
6282it [3:07:12, 2.56s/it]
6283it [3:07:14, 2.19s/it]
6284it [3:07:15, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6285it [3:07:16, 1.79s/it]
6286it [3:07:18, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6287it [3:07:20, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6288it [3:07:21, 1.70s/it]
6289it [3:07:23, 1.59s/it]
6290it [3:07:24, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6291it [3:07:25, 1.51s/it]
6292it [3:07:27, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6293it [3:07:28, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6294it [3:07:30, 1.47s/it]
6295it [3:07:31, 1.43s/it]
6296it [3:07:32, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6297it [3:07:34, 1.43s/it]
6298it [3:07:35, 1.39s/it]
6299it [3:07:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6300it [3:07:38, 1.41s/it]
6301it [3:07:39, 1.39s/it]
6302it [3:07:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6303it [3:07:42, 1.42s/it]
6304it [3:07:44, 1.39s/it]
6305it [3:07:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6306it [3:07:46, 1.41s/it]
6307it [3:07:48, 1.39s/it]
6308it [3:07:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6309it [3:07:50, 1.39s/it]
6310it [3:07:52, 1.37s/it]
6311it [3:07:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6312it [3:07:55, 1.39s/it]
6313it [3:07:56, 1.37s/it]
6314it [3:07:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6315it [3:07:59, 1.38s/it]
6316it [3:08:00, 1.35s/it]
6317it [3:08:01, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6318it [3:08:03, 1.37s/it]
6319it [3:08:04, 1.36s/it]
6320it [3:08:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6321it [3:08:07, 1.40s/it]
6322it [3:08:08, 1.38s/it]
6323it [3:08:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6324it [3:08:11, 1.39s/it]
6325it [3:08:12, 1.36s/it]
6326it [3:08:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6327it [3:08:15, 1.41s/it]
6328it [3:08:16, 1.38s/it]
6329it [3:08:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6330it [3:08:19, 1.40s/it]
6331it [3:08:21, 1.37s/it]
6332it [3:08:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6333it [3:08:23, 1.41s/it]
6334it [3:08:25, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6335it [3:08:26, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6336it [3:08:28, 1.43s/it]
6337it [3:08:29, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6338it [3:08:30, 1.43s/it]
6339it [3:08:32, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6340it [3:08:33, 1.43s/it]
6341it [3:08:35, 1.39s/it]
6342it [3:08:36, 1.37s/it]
6343it [3:08:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6344it [3:08:42, 2.24s/it]
6345it [3:08:43, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6346it [3:08:50, 3.45s/it]
6347it [3:08:51, 2.80s/it]
6348it [3:08:52, 2.36s/it]
6349it [3:08:54, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6350it [3:08:55, 1.93s/it]
6351it [3:08:57, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6352it [3:08:58, 1.68s/it]
6353it [3:09:00, 1.57s/it]
6354it [3:09:01, 1.49s/it]
6355it [3:09:02, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6356it [3:09:04, 1.45s/it]
6357it [3:09:05, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6358it [3:09:07, 1.56s/it]
6359it [3:09:08, 1.48s/it]
6360it [3:09:09, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6361it [3:09:11, 1.61s/it]
6362it [3:09:13, 1.52s/it]
6363it [3:09:14, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6364it [3:09:16, 1.47s/it]
6365it [3:09:17, 1.42s/it]
6366it [3:09:18, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6367it [3:09:20, 1.41s/it]
6368it [3:09:21, 1.39s/it]
6369it [3:09:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6370it [3:09:24, 1.40s/it]
6371it [3:09:25, 1.37s/it]
6372it [3:09:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6373it [3:09:28, 1.41s/it]
6374it [3:09:29, 1.38s/it]
6375it [3:09:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6376it [3:09:32, 1.48s/it]
6377it [3:09:34, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6378it [3:09:35, 1.47s/it]
6379it [3:09:37, 1.41s/it]
6380it [3:09:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6381it [3:09:39, 1.40s/it]
6382it [3:09:41, 1.38s/it]
6383it [3:09:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6384it [3:09:43, 1.41s/it]
6385it [3:09:45, 1.38s/it]
6386it [3:09:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6387it [3:09:48, 1.40s/it]
6388it [3:09:49, 1.38s/it]
6389it [3:09:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6390it [3:09:52, 1.42s/it]
6391it [3:09:53, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6392it [3:09:55, 1.42s/it]
6393it [3:09:56, 1.39s/it]
6394it [3:09:57, 1.35s/it]
6395it [3:09:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6396it [3:10:00, 1.37s/it]
6397it [3:10:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6398it [3:10:03, 1.38s/it]
6399it [3:10:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6400it [3:10:05, 1.39s/it]
6401it [3:10:07, 1.39s/it]
6402it [3:10:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6403it [3:10:10, 1.43s/it]
6404it [3:10:11, 1.39s/it]
6405it [3:10:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6406it [3:10:14, 1.40s/it]
6407it [3:10:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6408it [3:10:19, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6409it [3:10:20, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6410it [3:10:24, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6411it [3:10:26, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6412it [3:10:28, 2.19s/it]
6413it [3:10:29, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6414it [3:10:32, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6415it [3:10:33, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6416it [3:10:35, 1.83s/it]
6417it [3:10:36, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6418it [3:10:38, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6419it [3:10:39, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6420it [3:10:44, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6421it [3:10:45, 2.24s/it]
6422it [3:10:47, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6423it [3:10:48, 1.86s/it]
6424it [3:10:50, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6425it [3:10:55, 2.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6426it [3:10:57, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6427it [3:10:58, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6428it [3:11:00, 2.00s/it]
6429it [3:11:01, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6430it [3:11:03, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6431it [3:11:04, 1.63s/it]
6432it [3:11:06, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6433it [3:11:08, 1.69s/it]
6434it [3:11:09, 1.58s/it]
6435it [3:11:10, 1.50s/it]
6436it [3:11:12, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6437it [3:11:13, 1.44s/it]
6438it [3:11:14, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6439it [3:11:16, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6440it [3:11:22, 2.69s/it]
6441it [3:11:23, 2.29s/it]
6442it [3:11:24, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6443it [3:11:27, 2.08s/it]
6444it [3:11:28, 1.85s/it]
6445it [3:11:29, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6446it [3:11:32, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6447it [3:11:33, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6448it [3:11:35, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6449it [3:11:37, 1.78s/it]
6450it [3:11:38, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6451it [3:11:40, 1.59s/it]
6452it [3:11:41, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6453it [3:11:42, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6454it [3:11:44, 1.51s/it]
6455it [3:11:45, 1.46s/it]
6456it [3:11:47, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6457it [3:11:48, 1.46s/it]
6458it [3:11:49, 1.41s/it]
6459it [3:11:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6460it [3:11:52, 1.42s/it]
6461it [3:11:54, 1.39s/it]
6462it [3:11:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6463it [3:11:56, 1.40s/it]
6464it [3:11:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6465it [3:12:01, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6466it [3:12:03, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6467it [3:12:04, 1.71s/it]
6468it [3:12:05, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6469it [3:12:07, 1.55s/it]
6470it [3:12:08, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6471it [3:12:10, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6472it [3:12:11, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6473it [3:12:12, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6474it [3:12:14, 1.55s/it]
6475it [3:12:15, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6476it [3:12:17, 1.48s/it]
6477it [3:12:18, 1.43s/it]
6478it [3:12:20, 1.39s/it]
6479it [3:12:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6480it [3:12:22, 1.38s/it]
6481it [3:12:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6482it [3:12:26, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6483it [3:12:28, 1.65s/it]
6484it [3:12:29, 1.55s/it]
6485it [3:12:30, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6486it [3:12:32, 1.49s/it]
6487it [3:12:33, 1.43s/it]
6488it [3:12:34, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6489it [3:12:36, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6490it [3:12:37, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6491it [3:12:41, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6492it [3:12:42, 1.83s/it]
6493it [3:12:43, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6494it [3:12:45, 1.63s/it]
6495it [3:12:46, 1.54s/it]
6496it [3:12:48, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6497it [3:12:49, 1.46s/it]
6498it [3:12:50, 1.41s/it]
6499it [3:12:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6500it [3:12:53, 1.40s/it]
6501it [3:12:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6502it [3:12:56, 1.40s/it]
6503it [3:12:57, 1.37s/it]
6504it [3:12:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6505it [3:13:02, 2.05s/it]
6506it [3:13:03, 1.82s/it]
6507it [3:13:05, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6508it [3:13:06, 1.60s/it]
6509it [3:13:08, 1.51s/it]
6510it [3:13:09, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6511it [3:13:10, 1.45s/it]
6512it [3:13:12, 1.40s/it]
6513it [3:13:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6514it [3:13:14, 1.40s/it]
6515it [3:13:16, 1.37s/it]
6516it [3:13:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6517it [3:13:18, 1.37s/it]
6518it [3:13:20, 1.35s/it]
6519it [3:13:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6520it [3:13:22, 1.36s/it]
6521it [3:13:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6522it [3:13:25, 1.38s/it]
6523it [3:13:26, 1.36s/it]
6524it [3:13:28, 1.34s/it]
6525it [3:13:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6526it [3:13:30, 1.35s/it]
6527it [3:13:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6528it [3:13:40, 3.33s/it]
6529it [3:13:41, 2.72s/it]
6530it [3:13:42, 2.30s/it]
6531it [3:13:44, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6532it [3:13:48, 2.66s/it]
6533it [3:13:49, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6534it [3:13:58, 4.36s/it]
6535it [3:14:00, 3.45s/it]
6536it [3:14:01, 2.80s/it]
6537it [3:14:02, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6538it [3:14:04, 2.07s/it]
6539it [3:14:05, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6540it [3:14:07, 1.74s/it]
6541it [3:14:08, 1.61s/it]
6542it [3:14:09, 1.52s/it]
6543it [3:14:11, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6544it [3:14:12, 1.46s/it]
6545it [3:14:13, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6546it [3:14:15, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6547it [3:14:16, 1.45s/it]
6548it [3:14:18, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6549it [3:14:19, 1.42s/it]
6550it [3:14:20, 1.38s/it]
6551it [3:14:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6552it [3:14:23, 1.38s/it]
6553it [3:14:24, 1.37s/it]
6554it [3:14:26, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6555it [3:14:31, 2.49s/it]
6556it [3:14:32, 2.13s/it]
6557it [3:14:33, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6558it [3:14:35, 1.78s/it]
6559it [3:14:36, 1.64s/it]
6560it [3:14:38, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6561it [3:14:39, 1.53s/it]
6562it [3:14:40, 1.46s/it]
6563it [3:14:42, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6564it [3:14:43, 1.44s/it]
6565it [3:14:44, 1.40s/it]
6566it [3:14:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6567it [3:14:47, 1.39s/it]
6568it [3:14:49, 1.36s/it]
6569it [3:14:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6570it [3:14:51, 1.37s/it]
6571it [3:14:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6572it [3:14:54, 1.39s/it]
6573it [3:14:55, 1.36s/it]
6574it [3:14:57, 1.34s/it]
6575it [3:14:58, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6576it [3:14:59, 1.36s/it]
6577it [3:15:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6578it [3:15:02, 1.38s/it]
6579it [3:15:03, 1.35s/it]
6580it [3:15:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6581it [3:15:06, 1.39s/it]
6582it [3:15:08, 1.39s/it]
6583it [3:15:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6584it [3:15:10, 1.40s/it]
6585it [3:15:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6586it [3:15:13, 1.43s/it]
6587it [3:15:15, 1.40s/it]
6588it [3:15:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6589it [3:15:22, 2.71s/it]
6590it [3:15:23, 2.29s/it]
6591it [3:15:24, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6592it [3:15:30, 3.09s/it]
6593it [3:15:31, 2.55s/it]
6594it [3:15:33, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6595it [3:15:34, 1.96s/it]
6596it [3:15:35, 1.76s/it]
6597it [3:15:37, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6598it [3:15:40, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6599it [3:15:48, 3.81s/it]
6600it [3:15:49, 3.06s/it]
6601it [3:15:50, 2.53s/it]
6602it [3:15:52, 2.16s/it]
6603it [3:15:53, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6604it [3:15:54, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6605it [3:15:57, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6606it [3:15:59, 1.92s/it]
6607it [3:16:00, 1.74s/it]
6608it [3:16:01, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6609it [3:16:03, 1.58s/it]
6610it [3:16:04, 1.51s/it]
6611it [3:16:05, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6612it [3:16:07, 1.46s/it]
6613it [3:16:08, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6614it [3:16:10, 1.46s/it]
6615it [3:16:11, 1.41s/it]
6616it [3:16:12, 1.38s/it]
6617it [3:16:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6618it [3:16:15, 1.44s/it]
6619it [3:16:17, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6620it [3:16:18, 1.46s/it]
6621it [3:16:20, 1.41s/it]
6622it [3:16:21, 1.39s/it]
6623it [3:16:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6624it [3:16:24, 1.40s/it]
6625it [3:16:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6626it [3:16:27, 1.43s/it]
6627it [3:16:28, 1.39s/it]
6628it [3:16:29, 1.36s/it]
6629it [3:16:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6630it [3:16:32, 1.39s/it]
6631it [3:16:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6632it [3:16:35, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6633it [3:16:37, 1.52s/it]
6634it [3:16:38, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6635it [3:16:40, 1.47s/it]
6636it [3:16:41, 1.42s/it]
6637it [3:16:42, 1.38s/it]
6638it [3:16:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6639it [3:16:45, 1.40s/it]
6640it [3:16:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6641it [3:16:48, 1.39s/it]
6642it [3:16:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6643it [3:16:50, 1.38s/it]
6644it [3:16:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6645it [3:16:54, 1.59s/it]
6646it [3:16:55, 1.50s/it]
6647it [3:16:56, 1.44s/it]
6648it [3:16:58, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6649it [3:16:59, 1.41s/it]
6650it [3:17:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6651it [3:17:02, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6652it [3:17:04, 1.48s/it]
6653it [3:17:05, 1.42s/it]
6654it [3:17:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6655it [3:17:10, 1.94s/it]
6656it [3:17:11, 1.74s/it]
6657it [3:17:12, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6658it [3:17:14, 1.55s/it]
6659it [3:17:15, 1.48s/it]
6660it [3:17:16, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6661it [3:17:18, 1.45s/it]
6662it [3:17:19, 1.41s/it]
6663it [3:17:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6664it [3:17:22, 1.41s/it]
6665it [3:17:23, 1.38s/it]
6666it [3:17:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6667it [3:17:26, 1.39s/it]
6668it [3:17:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6669it [3:17:29, 1.42s/it]
6670it [3:17:30, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6671it [3:17:31, 1.41s/it]
6672it [3:17:33, 1.37s/it]
6673it [3:17:34, 1.36s/it]
6674it [3:17:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6675it [3:17:37, 1.38s/it]
6676it [3:17:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6677it [3:17:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6678it [3:17:41, 1.37s/it]
6679it [3:17:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6680it [3:17:44, 1.38s/it]
6681it [3:17:45, 1.36s/it]
6682it [3:17:46, 1.34s/it]
6683it [3:17:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6684it [3:17:49, 1.36s/it]
6685it [3:17:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6686it [3:17:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6687it [3:17:53, 1.41s/it]
6688it [3:17:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6689it [3:17:56, 1.39s/it]
6690it [3:17:57, 1.36s/it]
6691it [3:17:59, 1.34s/it]
6692it [3:18:00, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6693it [3:18:01, 1.36s/it]
6694it [3:18:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6695it [3:18:04, 1.49s/it]
6696it [3:18:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6697it [3:18:07, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6698it [3:18:09, 1.44s/it]
6699it [3:18:10, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6700it [3:18:11, 1.41s/it]
6701it [3:18:13, 1.38s/it]
6702it [3:18:14, 1.36s/it]
6703it [3:18:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6704it [3:18:17, 1.37s/it]
6705it [3:18:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6706it [3:18:20, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6707it [3:18:21, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6708it [3:18:23, 1.47s/it]
6709it [3:18:24, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6710it [3:18:25, 1.43s/it]
6711it [3:18:27, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6712it [3:18:28, 1.41s/it]
6713it [3:18:30, 1.39s/it]
6714it [3:18:31, 1.36s/it]
6715it [3:18:32, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6716it [3:18:34, 1.36s/it]
6717it [3:18:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6718it [3:18:36, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6719it [3:18:38, 1.45s/it]
6720it [3:18:39, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6721it [3:18:41, 1.42s/it]
6722it [3:18:42, 1.39s/it]
6723it [3:18:43, 1.37s/it]
6724it [3:18:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6725it [3:18:46, 1.41s/it]
6726it [3:18:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6727it [3:18:49, 1.41s/it]
6728it [3:18:50, 1.38s/it]
6729it [3:18:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6730it [3:18:53, 1.38s/it]
6731it [3:18:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6732it [3:18:56, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6733it [3:18:57, 1.42s/it]
6734it [3:18:59, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6735it [3:19:00, 1.41s/it]
6736it [3:19:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6737it [3:19:03, 1.39s/it]
6738it [3:19:04, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6739it [3:19:06, 1.40s/it]
6740it [3:19:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6741it [3:19:11, 2.26s/it]
6742it [3:19:13, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6743it [3:19:14, 1.82s/it]
6744it [3:19:15, 1.66s/it]
6745it [3:19:17, 1.55s/it]
6746it [3:19:18, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6747it [3:19:19, 1.48s/it]
6748it [3:19:21, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6749it [3:19:23, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6750it [3:19:25, 1.76s/it]
6751it [3:19:26, 1.63s/it]
6752it [3:19:28, 1.53s/it]
6753it [3:19:29, 1.47s/it]
6754it [3:19:30, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6755it [3:19:32, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6756it [3:19:34, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6757it [3:19:36, 1.66s/it]
6758it [3:19:37, 1.55s/it]
6759it [3:19:38, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6760it [3:19:40, 1.47s/it]
6761it [3:19:41, 1.42s/it]
6762it [3:19:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6763it [3:19:44, 1.41s/it]
6764it [3:19:45, 1.37s/it]
6765it [3:19:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6766it [3:19:48, 1.37s/it]
6767it [3:19:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6768it [3:19:51, 1.39s/it]
6769it [3:19:52, 1.37s/it]
6770it [3:19:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6771it [3:19:55, 1.38s/it]
6772it [3:19:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6773it [3:19:57, 1.40s/it]
6774it [3:19:59, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6775it [3:20:00, 1.45s/it]
6776it [3:20:02, 1.41s/it]
6777it [3:20:03, 1.38s/it]
6778it [3:20:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6779it [3:20:06, 1.37s/it]
6780it [3:20:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6781it [3:20:09, 1.39s/it]
6782it [3:20:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6783it [3:20:18, 3.43s/it]
6784it [3:20:19, 2.79s/it]
6785it [3:20:21, 2.34s/it]
6786it [3:20:22, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6787it [3:20:23, 1.85s/it]
6788it [3:20:25, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6789it [3:20:26, 1.62s/it]
6790it [3:20:27, 1.53s/it]
6791it [3:20:29, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6792it [3:20:30, 1.46s/it]
6793it [3:20:32, 1.41s/it]
6794it [3:20:33, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6795it [3:20:34, 1.42s/it]
6796it [3:20:36, 1.39s/it]
6797it [3:20:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6798it [3:20:38, 1.39s/it]
6799it [3:20:40, 1.36s/it]
6800it [3:20:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6801it [3:20:42, 1.37s/it]
6802it [3:20:44, 1.36s/it]
6803it [3:20:45, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6804it [3:20:47, 1.36s/it]
6805it [3:20:48, 1.36s/it]
6806it [3:20:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6807it [3:20:51, 1.36s/it]
6808it [3:20:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6809it [3:20:53, 1.38s/it]
6810it [3:20:55, 1.37s/it]
6811it [3:20:56, 1.35s/it]
6812it [3:20:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6813it [3:20:59, 1.39s/it]
6814it [3:21:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6815it [3:21:02, 1.42s/it]
6816it [3:21:03, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6817it [3:21:04, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6818it [3:21:06, 1.41s/it]
6819it [3:21:07, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6820it [3:21:09, 1.44s/it]
6821it [3:21:10, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6822it [3:21:12, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6823it [3:21:13, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6824it [3:21:15, 1.52s/it]
6825it [3:21:16, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6826it [3:21:18, 1.50s/it]
6827it [3:21:19, 1.45s/it]
6828it [3:21:20, 1.41s/it]
6829it [3:21:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6830it [3:21:23, 1.40s/it]
6831it [3:21:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6832it [3:21:26, 1.40s/it]
6833it [3:21:27, 1.37s/it]
6834it [3:21:29, 1.35s/it]
6835it [3:21:30, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6836it [3:21:31, 1.38s/it]
6837it [3:21:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6838it [3:21:34, 1.44s/it]
6839it [3:21:36, 1.40s/it]
6840it [3:21:37, 1.37s/it]
6841it [3:21:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6842it [3:21:40, 1.39s/it]
6843it [3:21:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6844it [3:21:43, 1.40s/it]
6845it [3:21:44, 1.37s/it]
6846it [3:21:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6847it [3:21:47, 1.43s/it]
6848it [3:21:48, 1.39s/it]
6849it [3:21:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6850it [3:21:51, 1.43s/it]
6851it [3:21:52, 1.40s/it]
6852it [3:21:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6853it [3:21:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6854it [3:21:57, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6855it [3:22:01, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6856it [3:22:02, 2.06s/it]
6857it [3:22:04, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6858it [3:22:05, 1.71s/it]
6859it [3:22:06, 1.59s/it]
6860it [3:22:08, 1.51s/it]
6861it [3:22:09, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6862it [3:22:11, 1.46s/it]
6863it [3:22:12, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6864it [3:22:14, 1.49s/it]
6865it [3:22:15, 1.43s/it]
6866it [3:22:16, 1.40s/it]
6867it [3:22:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6868it [3:22:19, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6869it [3:22:25, 2.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6870it [3:22:27, 2.45s/it]
6871it [3:22:28, 2.11s/it]
6872it [3:22:29, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6873it [3:22:31, 1.77s/it]
6874it [3:22:32, 1.62s/it]
6875it [3:22:33, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6876it [3:22:35, 1.51s/it]
6877it [3:22:36, 1.45s/it]
6878it [3:22:38, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6879it [3:22:39, 1.41s/it]
6880it [3:22:40, 1.38s/it]
6881it [3:22:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6882it [3:22:43, 1.38s/it]
6883it [3:22:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6884it [3:22:46, 1.42s/it]
6885it [3:22:47, 1.39s/it]
6886it [3:22:48, 1.36s/it]
6887it [3:22:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6888it [3:22:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6889it [3:22:54, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6890it [3:22:56, 1.74s/it]
6891it [3:22:57, 1.62s/it]
6892it [3:22:58, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6893it [3:23:00, 1.53s/it]
6894it [3:23:01, 1.47s/it]
6895it [3:23:02, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6896it [3:23:04, 1.45s/it]
6897it [3:23:05, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6898it [3:23:07, 1.43s/it]
6899it [3:23:08, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6900it [3:23:10, 1.45s/it]
6901it [3:23:11, 1.43s/it]
6902it [3:23:12, 1.39s/it]
6903it [3:23:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6904it [3:23:15, 1.40s/it]
6905it [3:23:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6906it [3:23:18, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6907it [3:23:20, 1.46s/it]
6908it [3:23:21, 1.41s/it]
6909it [3:23:22, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6910it [3:23:24, 1.41s/it]
6911it [3:23:25, 1.38s/it]
6912it [3:23:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6913it [3:23:28, 1.40s/it]
6914it [3:23:29, 1.37s/it]
6915it [3:23:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6916it [3:23:32, 1.37s/it]
6917it [3:23:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6918it [3:23:35, 1.39s/it]
6919it [3:23:36, 1.36s/it]
6920it [3:23:37, 1.34s/it]
6921it [3:23:38, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6922it [3:23:40, 1.36s/it]
6923it [3:23:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6924it [3:23:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6925it [3:23:44, 1.45s/it]
6926it [3:23:46, 1.43s/it]
6927it [3:23:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6928it [3:23:51, 2.07s/it]
6929it [3:23:52, 1.84s/it]
6930it [3:23:53, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6931it [3:23:55, 1.62s/it]
6932it [3:23:56, 1.52s/it]
6933it [3:23:57, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6934it [3:23:59, 1.46s/it]
6935it [3:24:00, 1.41s/it]
6936it [3:24:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6937it [3:24:03, 1.40s/it]
6938it [3:24:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6939it [3:24:06, 1.41s/it]
6940it [3:24:07, 1.38s/it]
6941it [3:24:08, 1.36s/it]
6942it [3:24:10, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6943it [3:24:11, 1.39s/it]
6944it [3:24:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6945it [3:24:14, 1.40s/it]
6946it [3:24:15, 1.38s/it]
6947it [3:24:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6948it [3:24:18, 1.41s/it]
6949it [3:24:19, 1.39s/it]
6950it [3:24:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6951it [3:24:22, 1.39s/it]
6952it [3:24:23, 1.37s/it]
6953it [3:24:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6954it [3:24:26, 1.39s/it]
6955it [3:24:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6956it [3:24:29, 1.42s/it]
6957it [3:24:30, 1.39s/it]
6958it [3:24:32, 1.37s/it]
6959it [3:24:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6960it [3:24:35, 1.39s/it]
6961it [3:24:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6962it [3:24:37, 1.39s/it]
6963it [3:24:39, 1.36s/it]
6964it [3:24:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6965it [3:24:41, 1.38s/it]
6966it [3:24:43, 1.36s/it]
6967it [3:24:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6968it [3:24:45, 1.37s/it]
6969it [3:24:47, 1.35s/it]
6970it [3:24:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6971it [3:24:50, 1.39s/it]
6972it [3:24:51, 1.36s/it]
6973it [3:24:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6974it [3:24:56, 2.19s/it]
6975it [3:24:58, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6976it [3:24:59, 1.79s/it]
6977it [3:25:00, 1.65s/it]
6978it [3:25:02, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6979it [3:25:03, 1.54s/it]
6980it [3:25:05, 1.47s/it]
6981it [3:25:06, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6982it [3:25:07, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6983it [3:25:09, 1.61s/it]
6984it [3:25:11, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6985it [3:25:13, 1.65s/it]
6986it [3:25:14, 1.54s/it]
6987it [3:25:15, 1.47s/it]
6988it [3:25:17, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6989it [3:25:18, 1.44s/it]
6990it [3:25:19, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6991it [3:25:21, 1.42s/it]
6992it [3:25:22, 1.40s/it]
6993it [3:25:23, 1.37s/it]
6994it [3:25:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6995it [3:25:26, 1.38s/it]
6996it [3:25:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6997it [3:25:29, 1.38s/it]
6998it [3:25:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6999it [3:25:32, 1.38s/it]
7000it [3:25:33, 1.36s/it]
7001it [3:25:34, 1.34s/it]
7002it [3:25:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7003it [3:25:37, 1.36s/it]
7004it [3:25:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7005it [3:25:40, 1.38s/it]
7006it [3:25:41, 1.35s/it]
7007it [3:25:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7008it [3:25:44, 1.37s/it]
7009it [3:25:45, 1.36s/it]
7010it [3:25:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7011it [3:25:48, 1.39s/it]
7012it [3:25:49, 1.37s/it]
7013it [3:25:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7014it [3:25:52, 1.41s/it]
7015it [3:25:53, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7016it [3:25:55, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7017it [3:25:57, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7018it [3:25:58, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7019it [3:26:01, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7020it [3:26:04, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7021it [3:26:07, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7022it [3:26:08, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7023it [3:26:10, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7024it [3:26:12, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7025it [3:26:13, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7026it [3:26:15, 1.70s/it]
7027it [3:26:16, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7028it [3:26:18, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7029it [3:26:20, 1.90s/it]
7030it [3:26:22, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7031it [3:26:23, 1.65s/it]
7032it [3:26:24, 1.55s/it]
7033it [3:26:26, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7034it [3:26:27, 1.47s/it]
7035it [3:26:29, 1.42s/it]
7036it [3:26:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7037it [3:26:31, 1.41s/it]
7038it [3:26:33, 1.39s/it]
7039it [3:26:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7040it [3:26:35, 1.40s/it]
7041it [3:26:37, 1.37s/it]
7042it [3:26:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7043it [3:26:40, 1.40s/it]
7044it [3:26:41, 1.38s/it]
7045it [3:26:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7046it [3:26:44, 1.41s/it]
7047it [3:26:45, 1.37s/it]
7048it [3:26:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7049it [3:26:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7050it [3:26:49, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7051it [3:26:53, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7052it [3:26:54, 1.91s/it]
7053it [3:26:56, 1.74s/it]
7054it [3:26:57, 1.61s/it]
7055it [3:26:58, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7056it [3:27:00, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7057it [3:27:03, 1.94s/it]
7058it [3:27:04, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7059it [3:27:06, 1.74s/it]
7060it [3:27:07, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7061it [3:27:09, 1.57s/it]
7062it [3:27:10, 1.49s/it]
7063it [3:27:11, 1.43s/it]
7064it [3:27:13, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7065it [3:27:14, 1.40s/it]
7066it [3:27:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7067it [3:27:17, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7068it [3:27:18, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7069it [3:27:20, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7070it [3:27:22, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7071it [3:27:24, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7072it [3:27:26, 1.80s/it]
7073it [3:27:27, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7074it [3:27:29, 1.61s/it]
7075it [3:27:30, 1.52s/it]
7076it [3:27:31, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7077it [3:27:33, 1.46s/it]
7078it [3:27:34, 1.41s/it]
7079it [3:27:35, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7080it [3:27:37, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7081it [3:27:38, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7082it [3:27:42, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7083it [3:27:45, 2.20s/it]
7084it [3:27:46, 1.93s/it]
7085it [3:27:47, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7086it [3:27:49, 1.75s/it]
7087it [3:27:50, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7088it [3:27:52, 1.59s/it]
7089it [3:27:53, 1.52s/it]
7090it [3:27:54, 1.47s/it]
7091it [3:27:56, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7092it [3:27:57, 1.44s/it]
7093it [3:27:59, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7094it [3:28:00, 1.44s/it]
7095it [3:28:01, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7096it [3:28:03, 1.42s/it]
7097it [3:28:04, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7098it [3:28:06, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7099it [3:28:07, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7100it [3:28:10, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7101it [3:28:12, 1.84s/it]
7102it [3:28:13, 1.69s/it]
7103it [3:28:15, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7104it [3:28:16, 1.56s/it]
7105it [3:28:17, 1.48s/it]
7106it [3:28:19, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7107it [3:28:20, 1.43s/it]
7108it [3:28:21, 1.39s/it]
7109it [3:28:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7110it [3:28:24, 1.42s/it]
7111it [3:28:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7112it [3:28:28, 1.72s/it]
7113it [3:28:29, 1.59s/it]
7114it [3:28:31, 1.50s/it]
7115it [3:28:32, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7116it [3:28:33, 1.44s/it]
7117it [3:28:35, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7118it [3:28:36, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7119it [3:28:38, 1.48s/it]
7120it [3:28:39, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7121it [3:28:41, 1.44s/it]
7122it [3:28:42, 1.40s/it]
7123it [3:28:43, 1.38s/it]
7124it [3:28:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7125it [3:28:46, 1.38s/it]
7126it [3:28:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7127it [3:28:49, 1.40s/it]
7128it [3:28:50, 1.37s/it]
7129it [3:28:51, 1.34s/it]
7130it [3:28:53, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7131it [3:28:54, 1.35s/it]
7132it [3:28:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7133it [3:28:57, 1.38s/it]
7134it [3:28:58, 1.36s/it]
7135it [3:28:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7136it [3:29:01, 1.37s/it]
7137it [3:29:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7138it [3:29:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7139it [3:29:05, 1.40s/it]
7140it [3:29:06, 1.39s/it]
7141it [3:29:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7142it [3:29:09, 1.40s/it]
7143it [3:29:11, 1.37s/it]
7144it [3:29:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7145it [3:29:13, 1.37s/it]
7146it [3:29:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7147it [3:29:16, 1.39s/it]
7148it [3:29:17, 1.37s/it]
7149it [3:29:19, 1.35s/it]
7150it [3:29:20, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7151it [3:29:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7152it [3:29:24, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7153it [3:29:25, 1.65s/it]
7154it [3:29:27, 1.56s/it]
7155it [3:29:28, 1.48s/it]
7156it [3:29:29, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7157it [3:29:31, 1.43s/it]
7158it [3:29:32, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7159it [3:29:34, 1.41s/it]
7160it [3:29:35, 1.39s/it]
7161it [3:29:36, 1.36s/it]
7162it [3:29:37, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7163it [3:29:42, 2.35s/it]
7164it [3:29:44, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7165it [3:29:46, 2.29s/it]
7166it [3:29:48, 2.00s/it]
7167it [3:29:49, 1.79s/it]
7168it [3:29:50, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7169it [3:29:52, 1.60s/it]
7170it [3:29:53, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7171it [3:29:55, 1.54s/it]
7172it [3:29:56, 1.47s/it]
7173it [3:29:57, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7174it [3:30:00, 1.71s/it]
7175it [3:30:01, 1.59s/it]
7176it [3:30:02, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7177it [3:30:04, 1.50s/it]
7178it [3:30:05, 1.44s/it]
7179it [3:30:07, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7180it [3:30:08, 1.44s/it]
7181it [3:30:09, 1.40s/it]
7182it [3:30:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7183it [3:30:12, 1.40s/it]
7184it [3:30:13, 1.37s/it]
7185it [3:30:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7186it [3:30:16, 1.39s/it]
7187it [3:30:17, 1.37s/it]
7188it [3:30:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7189it [3:30:20, 1.38s/it]
7190it [3:30:22, 1.36s/it]
7191it [3:30:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7192it [3:30:24, 1.41s/it]
7193it [3:30:26, 1.37s/it]
7194it [3:30:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7195it [3:30:28, 1.38s/it]
7196it [3:30:30, 1.36s/it]
7197it [3:30:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7198it [3:30:33, 1.40s/it]
7199it [3:30:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7200it [3:30:35, 1.42s/it]
7201it [3:30:37, 1.39s/it]
7202it [3:30:38, 1.36s/it]
7203it [3:30:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7204it [3:30:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7205it [3:30:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7206it [3:30:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7207it [3:30:48, 2.27s/it]
7208it [3:30:49, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7209it [3:30:55, 2.97s/it]
7210it [3:30:56, 2.47s/it]
7211it [3:30:57, 2.12s/it]
7212it [3:30:58, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7213it [3:31:02, 2.28s/it]
7214it [3:31:03, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7215it [3:31:09, 3.07s/it]
7216it [3:31:10, 2.54s/it]
7217it [3:31:11, 2.19s/it]
7218it [3:31:13, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7219it [3:31:18, 3.06s/it]
7220it [3:31:20, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7221it [3:31:26, 3.65s/it]
7222it [3:31:27, 2.95s/it]
7223it [3:31:28, 2.47s/it]
7224it [3:31:30, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7225it [3:31:31, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7226it [3:31:36, 2.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7227it [3:31:38, 2.49s/it]
7228it [3:31:39, 2.15s/it]
7229it [3:31:41, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7230it [3:31:42, 1.80s/it]
7231it [3:31:44, 1.66s/it]
7232it [3:31:45, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7233it [3:31:47, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7234it [3:31:51, 2.42s/it]
7235it [3:31:52, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7236it [3:31:55, 2.14s/it]
7237it [3:31:56, 1.89s/it]
7238it [3:31:57, 1.71s/it]
7239it [3:31:59, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7240it [3:32:00, 1.55s/it]
7241it [3:32:01, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7242it [3:32:03, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7243it [3:32:04, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7244it [3:32:06, 1.60s/it]
7245it [3:32:08, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7246it [3:32:09, 1.51s/it]
7247it [3:32:10, 1.45s/it]
7248it [3:32:12, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7249it [3:32:13, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7250it [3:32:15, 1.45s/it]
7251it [3:32:16, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7252it [3:32:17, 1.43s/it]
7253it [3:32:19, 1.39s/it]
7254it [3:32:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7255it [3:32:22, 1.40s/it]
7256it [3:32:23, 1.38s/it]
7257it [3:32:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7258it [3:32:26, 1.63s/it]
7259it [3:32:28, 1.53s/it]
7260it [3:32:29, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7261it [3:32:30, 1.45s/it]
7262it [3:32:32, 1.41s/it]
7263it [3:32:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7264it [3:32:35, 1.48s/it]
7265it [3:32:36, 1.43s/it]
7266it [3:32:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7267it [3:32:39, 1.43s/it]
7268it [3:32:40, 1.39s/it]
7269it [3:32:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7270it [3:32:43, 1.54s/it]
7271it [3:32:45, 1.49s/it]
7272it [3:32:46, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7273it [3:32:52, 2.78s/it]
7274it [3:32:53, 2.34s/it]
7275it [3:32:55, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7276it [3:33:01, 3.29s/it]
7277it [3:33:02, 2.70s/it]
7278it [3:33:04, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7279it [3:33:05, 2.04s/it]
7280it [3:33:06, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7281it [3:33:10, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7282it [3:33:13, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7283it [3:33:14, 2.19s/it]
7284it [3:33:16, 1.92s/it]
7285it [3:33:17, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7286it [3:33:18, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7287it [3:33:21, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7288it [3:33:22, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7289it [3:33:25, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7290it [3:33:30, 3.01s/it]
7291it [3:33:32, 2.49s/it]
7292it [3:33:33, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7293it [3:33:35, 1.95s/it]
7294it [3:33:36, 1.76s/it]
7295it [3:33:37, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7296it [3:33:41, 2.17s/it]
7297it [3:33:42, 1.91s/it]
7298it [3:33:43, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7299it [3:33:45, 1.67s/it]
7300it [3:33:46, 1.56s/it]
7301it [3:33:47, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7302it [3:33:49, 1.49s/it]
7303it [3:33:50, 1.45s/it]
7304it [3:33:51, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7305it [3:33:56, 2.38s/it]
7306it [3:33:57, 2.06s/it]
7307it [3:33:59, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7308it [3:34:00, 1.74s/it]
7309it [3:34:02, 1.61s/it]
7310it [3:34:03, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7311it [3:34:04, 1.52s/it]
7312it [3:34:06, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7313it [3:34:12, 2.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7314it [3:34:14, 2.49s/it]
7315it [3:34:15, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7316it [3:34:16, 1.95s/it]
7317it [3:34:18, 1.76s/it]
7318it [3:34:19, 1.62s/it]
7319it [3:34:20, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7320it [3:34:22, 1.49s/it]
7321it [3:34:23, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7322it [3:34:24, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7323it [3:34:26, 1.59s/it]
7324it [3:34:28, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7325it [3:34:31, 1.90s/it]
7326it [3:34:32, 1.74s/it]
7327it [3:34:33, 1.62s/it]
7328it [3:34:35, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7329it [3:34:36, 1.53s/it]
7330it [3:34:37, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7331it [3:34:39, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7332it [3:34:40, 1.47s/it]
7333it [3:34:42, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7334it [3:34:43, 1.45s/it]
7335it [3:34:45, 1.41s/it]
7336it [3:34:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7337it [3:34:47, 1.40s/it]
7338it [3:34:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7339it [3:34:51, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7340it [3:34:52, 1.53s/it]
7341it [3:34:53, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7342it [3:34:55, 1.47s/it]
7343it [3:34:56, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7344it [3:34:58, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7345it [3:34:59, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7346it [3:35:00, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7347it [3:35:02, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7348it [3:35:03, 1.41s/it]
7349it [3:35:05, 1.38s/it]
7350it [3:35:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7351it [3:35:07, 1.38s/it]
7352it [3:35:09, 1.36s/it]
7353it [3:35:10, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7354it [3:35:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7355it [3:35:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7356it [3:35:14, 1.37s/it]
7357it [3:35:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7358it [3:35:17, 1.49s/it]
7359it [3:35:18, 1.43s/it]
7360it [3:35:20, 1.42s/it]
7361it [3:35:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7362it [3:35:23, 1.43s/it]
7363it [3:35:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7364it [3:35:26, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7365it [3:35:27, 1.50s/it]
7366it [3:35:29, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7367it [3:35:30, 1.46s/it]
7368it [3:35:31, 1.41s/it]
7369it [3:35:33, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7370it [3:35:34, 1.42s/it]
7371it [3:35:36, 1.40s/it]
7372it [3:35:37, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7373it [3:35:38, 1.43s/it]
7374it [3:35:40, 1.39s/it]
7375it [3:35:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7376it [3:35:43, 1.43s/it]
7377it [3:35:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7378it [3:35:46, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7379it [3:35:47, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7380it [3:35:49, 1.52s/it]
7381it [3:35:50, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7382it [3:35:52, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7383it [3:35:53, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7384it [3:35:54, 1.44s/it]
7385it [3:35:56, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7386it [3:35:57, 1.43s/it]
7387it [3:35:59, 1.39s/it]
7388it [3:36:00, 1.37s/it]
7389it [3:36:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7390it [3:36:04, 1.82s/it]
7391it [3:36:05, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7392it [3:36:07, 1.63s/it]
7393it [3:36:08, 1.54s/it]
7394it [3:36:10, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7395it [3:36:11, 1.46s/it]
7396it [3:36:12, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7397it [3:36:14, 1.45s/it]
7398it [3:36:15, 1.41s/it]
7399it [3:36:16, 1.37s/it]
7400it [3:36:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7401it [3:36:19, 1.37s/it]
7402it [3:36:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7403it [3:36:22, 1.38s/it]
7404it [3:36:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7405it [3:36:25, 1.41s/it]
7406it [3:36:26, 1.38s/it]
7407it [3:36:27, 1.36s/it]
7408it [3:36:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7409it [3:36:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7410it [3:36:33, 1.85s/it]
7411it [3:36:34, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7412it [3:36:36, 1.65s/it]
7413it [3:36:37, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7414it [3:36:39, 1.53s/it]
7415it [3:36:40, 1.47s/it]
7416it [3:36:41, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7417it [3:36:43, 1.44s/it]
7418it [3:36:44, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7419it [3:36:47, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7420it [3:36:49, 1.83s/it]
7421it [3:36:50, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7422it [3:36:52, 1.63s/it]
7423it [3:36:53, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7424it [3:36:55, 1.53s/it]
7425it [3:36:56, 1.46s/it]
7426it [3:36:57, 1.41s/it]
7427it [3:36:59, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7428it [3:37:00, 1.39s/it]
7429it [3:37:01, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7430it [3:37:03, 1.38s/it]
7431it [3:37:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7432it [3:37:05, 1.38s/it]
7433it [3:37:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7434it [3:37:08, 1.40s/it]
7435it [3:37:10, 1.37s/it]
7436it [3:37:11, 1.35s/it]
7437it [3:37:12, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7438it [3:37:14, 1.36s/it]
7439it [3:37:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7440it [3:37:16, 1.38s/it]
7441it [3:37:18, 1.36s/it]
7442it [3:37:19, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7443it [3:37:25, 2.67s/it]
7444it [3:37:26, 2.26s/it]
7445it [3:37:27, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7446it [3:37:29, 1.82s/it]
7447it [3:37:30, 1.67s/it]
7448it [3:37:31, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7449it [3:37:33, 1.55s/it]
7450it [3:37:34, 1.48s/it]
7451it [3:37:36, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7452it [3:37:37, 1.44s/it]
7453it [3:37:38, 1.40s/it]
7454it [3:37:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7455it [3:37:41, 1.41s/it]
7456it [3:37:42, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7457it [3:37:44, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7458it [3:37:48, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7459it [3:37:54, 3.20s/it]
7460it [3:37:55, 2.63s/it]
7461it [3:37:56, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7462it [3:38:02, 3.29s/it]
7463it [3:38:03, 2.69s/it]
7464it [3:38:04, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7465it [3:38:06, 2.03s/it]
7466it [3:38:07, 1.81s/it]
7467it [3:38:09, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7468it [3:38:10, 1.60s/it]
7469it [3:38:11, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7470it [3:38:13, 1.50s/it]
7471it [3:38:14, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7472it [3:38:16, 1.49s/it]
7473it [3:38:17, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7474it [3:38:18, 1.43s/it]
7475it [3:38:20, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7476it [3:38:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7477it [3:38:23, 1.48s/it]
7478it [3:38:24, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7479it [3:38:26, 1.43s/it]
7480it [3:38:27, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7481it [3:38:28, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7482it [3:38:31, 1.79s/it]
7483it [3:38:32, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7484it [3:38:34, 1.60s/it]
7485it [3:38:35, 1.51s/it]
7486it [3:38:36, 1.45s/it]
7487it [3:38:38, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7488it [3:38:39, 1.43s/it]
7489it [3:38:40, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7490it [3:38:42, 1.43s/it]
7491it [3:38:43, 1.39s/it]
7492it [3:38:45, 1.37s/it]
7493it [3:38:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7494it [3:38:47, 1.38s/it]
7495it [3:38:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7496it [3:38:50, 1.39s/it]
7497it [3:38:51, 1.37s/it]
7498it [3:38:53, 1.36s/it]
7499it [3:38:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7500it [3:38:56, 1.39s/it]
7501it [3:38:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7502it [3:38:59, 1.43s/it]
7503it [3:39:00, 1.40s/it]
7504it [3:39:01, 1.39s/it]
7505it [3:39:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7506it [3:39:08, 2.62s/it]
7507it [3:39:09, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7508it [3:39:14, 3.02s/it]
7509it [3:39:16, 2.50s/it]
7510it [3:39:17, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7511it [3:39:23, 3.24s/it]
7512it [3:39:24, 2.67s/it]
7513it [3:39:25, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7514it [3:39:27, 2.02s/it]
7515it [3:39:28, 1.82s/it]
7516it [3:39:29, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7517it [3:39:31, 1.62s/it]
7518it [3:39:32, 1.53s/it]
7519it [3:39:34, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7520it [3:39:35, 1.46s/it]
7521it [3:39:36, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7522it [3:39:38, 1.46s/it]
7523it [3:39:39, 1.41s/it]
7524it [3:39:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7525it [3:39:42, 1.41s/it]
7526it [3:39:43, 1.39s/it]
7527it [3:39:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7528it [3:39:46, 1.41s/it]
7529it [3:39:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7530it [3:39:49, 1.43s/it]
7531it [3:39:50, 1.39s/it]
7532it [3:39:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7533it [3:39:53, 1.50s/it]
7534it [3:39:55, 1.44s/it]
7535it [3:39:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7536it [3:39:58, 1.44s/it]
7537it [3:39:59, 1.40s/it]
7538it [3:40:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7539it [3:40:02, 1.42s/it]
7540it [3:40:03, 1.38s/it]
7541it [3:40:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7542it [3:40:06, 1.39s/it]
7543it [3:40:07, 1.37s/it]
7544it [3:40:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7545it [3:40:10, 1.48s/it]
7546it [3:40:11, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7547it [3:40:13, 1.45s/it]
7548it [3:40:14, 1.40s/it]
7549it [3:40:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7550it [3:40:17, 1.40s/it]
7551it [3:40:18, 1.37s/it]
7552it [3:40:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7553it [3:40:21, 1.38s/it]
7554it [3:40:22, 1.35s/it]
7555it [3:40:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7556it [3:40:25, 1.37s/it]
7557it [3:40:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7558it [3:40:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7559it [3:40:29, 1.38s/it]
7560it [3:40:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7561it [3:40:32, 1.39s/it]
7562it [3:40:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7563it [3:40:35, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7564it [3:40:38, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7565it [3:40:39, 1.66s/it]
7566it [3:40:40, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7567it [3:40:42, 1.58s/it]
7568it [3:40:43, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7569it [3:40:45, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7570it [3:40:49, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7571it [3:40:57, 3.96s/it]
7572it [3:40:58, 3.16s/it]
7573it [3:40:59, 2.61s/it]
7574it [3:41:01, 2.22s/it]
7575it [3:41:02, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7576it [3:41:03, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7577it [3:41:07, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7578it [3:41:08, 2.09s/it]
7579it [3:41:10, 1.86s/it]
7580it [3:41:11, 1.70s/it]
7581it [3:41:12, 1.58s/it]
7582it [3:41:14, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7583it [3:41:15, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7584it [3:41:18, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7585it [3:41:19, 1.71s/it]
7586it [3:41:20, 1.59s/it]
7587it [3:41:22, 1.52s/it]
7588it [3:41:23, 1.46s/it]
7589it [3:41:24, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7590it [3:41:26, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7591it [3:41:30, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7592it [3:41:31, 1.98s/it]
7593it [3:41:33, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7594it [3:41:34, 1.73s/it]
7595it [3:41:36, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7596it [3:41:38, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7597it [3:41:39, 1.73s/it]
7598it [3:41:41, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7599it [3:41:42, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7600it [3:41:44, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7601it [3:41:45, 1.48s/it]
7602it [3:41:46, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7603it [3:41:48, 1.46s/it]
7604it [3:41:49, 1.42s/it]
7605it [3:41:51, 1.40s/it]
7606it [3:41:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7607it [3:41:53, 1.40s/it]
7608it [3:41:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7609it [3:41:56, 1.38s/it]
7610it [3:41:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7611it [3:41:59, 1.39s/it]
7612it [3:42:00, 1.36s/it]
7613it [3:42:01, 1.34s/it]
7614it [3:42:03, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7615it [3:42:04, 1.40s/it]
7616it [3:42:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7617it [3:42:07, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7618it [3:42:09, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7619it [3:42:10, 1.44s/it]
7620it [3:42:11, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7621it [3:42:13, 1.44s/it]
7622it [3:42:14, 1.40s/it]
7623it [3:42:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7624it [3:42:17, 1.42s/it]
7625it [3:42:18, 1.39s/it]
7626it [3:42:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7627it [3:42:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7628it [3:42:24, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7629it [3:42:26, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7630it [3:42:28, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7631it [3:42:29, 1.74s/it]
7632it [3:42:31, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7633it [3:42:32, 1.56s/it]
7634it [3:42:33, 1.49s/it]
7635it [3:42:35, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7636it [3:42:36, 1.44s/it]
7637it [3:42:37, 1.41s/it]
7638it [3:42:39, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7639it [3:42:40, 1.40s/it]
7640it [3:42:42, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7641it [3:42:43, 1.45s/it]
7642it [3:42:45, 1.42s/it]
7643it [3:42:46, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7644it [3:42:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7645it [3:42:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7646it [3:42:53, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7647it [3:42:56, 2.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7648it [3:42:58, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7649it [3:42:59, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7650it [3:43:01, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7651it [3:43:02, 1.81s/it]
7652it [3:43:04, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7653it [3:43:05, 1.61s/it]
7654it [3:43:07, 1.51s/it]
7655it [3:43:08, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7656it [3:43:09, 1.46s/it]
7657it [3:43:11, 1.42s/it]
7658it [3:43:12, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7659it [3:43:14, 1.45s/it]
7660it [3:43:15, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7661it [3:43:16, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7662it [3:43:18, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7663it [3:43:24, 2.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7664it [3:43:25, 2.42s/it]
7665it [3:43:27, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7666it [3:43:28, 1.92s/it]
7667it [3:43:29, 1.74s/it]
7668it [3:43:31, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7669it [3:43:32, 1.58s/it]
7670it [3:43:34, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7671it [3:43:35, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7672it [3:43:36, 1.48s/it]
7673it [3:43:38, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7674it [3:43:39, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7675it [3:43:41, 1.46s/it]
7676it [3:43:42, 1.42s/it]
7677it [3:43:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7678it [3:43:45, 1.43s/it]
7679it [3:43:46, 1.39s/it]
7680it [3:43:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7681it [3:43:50, 1.79s/it]
7682it [3:43:52, 1.66s/it]
7683it [3:43:53, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7684it [3:44:01, 3.39s/it]
7685it [3:44:02, 2.76s/it]
7686it [3:44:03, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7687it [3:44:06, 2.47s/it]
7688it [3:44:07, 2.12s/it]
7689it [3:44:09, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7690it [3:44:10, 1.80s/it]
7691it [3:44:12, 1.67s/it]
7692it [3:44:13, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7693it [3:44:14, 1.53s/it]
7694it [3:44:16, 1.47s/it]
7695it [3:44:17, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7696it [3:44:19, 1.44s/it]
7697it [3:44:20, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7698it [3:44:21, 1.40s/it]
7699it [3:44:23, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7700it [3:44:24, 1.42s/it]
7701it [3:44:25, 1.39s/it]
7702it [3:44:27, 1.36s/it]
7703it [3:44:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7704it [3:44:30, 1.39s/it]
7705it [3:44:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7706it [3:44:32, 1.42s/it]
7707it [3:44:34, 1.38s/it]
7708it [3:44:35, 1.36s/it]
7709it [3:44:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7710it [3:44:38, 1.37s/it]
7711it [3:44:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7712it [3:44:41, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7713it [3:44:43, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7714it [3:44:44, 1.49s/it]
7715it [3:44:45, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7716it [3:44:47, 1.59s/it]
7717it [3:44:49, 1.50s/it]
7718it [3:44:50, 1.44s/it]
7719it [3:44:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7720it [3:44:53, 1.41s/it]
7721it [3:44:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7722it [3:44:55, 1.41s/it]
7723it [3:44:57, 1.38s/it]
7724it [3:44:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7725it [3:44:59, 1.41s/it]
7726it [3:45:01, 1.39s/it]
7727it [3:45:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7728it [3:45:06, 2.01s/it]
7729it [3:45:07, 1.80s/it]
7730it [3:45:08, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7731it [3:45:10, 1.60s/it]
7732it [3:45:11, 1.52s/it]
7733it [3:45:12, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7734it [3:45:14, 1.46s/it]
7735it [3:45:15, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7736it [3:45:17, 1.41s/it]
7737it [3:45:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7738it [3:45:19, 1.43s/it]
7739it [3:45:21, 1.39s/it]
7740it [3:45:22, 1.37s/it]
7741it [3:45:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7742it [3:45:25, 1.42s/it]
7743it [3:45:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7744it [3:45:28, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7745it [3:45:32, 2.34s/it]
7746it [3:45:33, 2.04s/it]
7747it [3:45:35, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7748it [3:45:36, 1.73s/it]
7749it [3:45:38, 1.61s/it]
7750it [3:45:39, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7751it [3:45:41, 1.53s/it]
7752it [3:45:42, 1.46s/it]
7753it [3:45:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7754it [3:45:45, 1.44s/it]
7755it [3:45:46, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7756it [3:45:47, 1.42s/it]
7757it [3:45:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7758it [3:45:50, 1.41s/it]
7759it [3:45:52, 1.39s/it]
7760it [3:45:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7761it [3:45:54, 1.41s/it]
7762it [3:45:56, 1.39s/it]
7763it [3:45:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7764it [3:45:58, 1.40s/it]
7765it [3:46:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7766it [3:46:01, 1.42s/it]
7767it [3:46:03, 1.39s/it]
7768it [3:46:04, 1.37s/it]
7769it [3:46:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7770it [3:46:07, 1.39s/it]
7771it [3:46:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7772it [3:46:09, 1.39s/it]
7773it [3:46:11, 1.36s/it]
7774it [3:46:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7775it [3:46:14, 1.38s/it]
7776it [3:46:15, 1.36s/it]
7777it [3:46:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7778it [3:46:18, 1.39s/it]
7779it [3:46:19, 1.36s/it]
7780it [3:46:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7781it [3:46:22, 1.37s/it]
7782it [3:46:23, 1.35s/it]
7783it [3:46:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7784it [3:46:26, 1.41s/it]
7785it [3:46:27, 1.38s/it]
7786it [3:46:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7787it [3:46:30, 1.39s/it]
7788it [3:46:31, 1.36s/it]
7789it [3:46:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7790it [3:46:34, 1.38s/it]
7791it [3:46:35, 1.36s/it]
7792it [3:46:37, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7793it [3:46:38, 1.37s/it]
7794it [3:46:39, 1.35s/it]
7795it [3:46:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7796it [3:46:42, 1.42s/it]
7797it [3:46:44, 1.40s/it]
7798it [3:46:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7799it [3:46:46, 1.41s/it]
7800it [3:46:48, 1.38s/it]
7801it [3:46:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7802it [3:46:51, 1.42s/it]
7803it [3:46:52, 1.38s/it]
7804it [3:46:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7805it [3:46:55, 1.38s/it]
7806it [3:46:56, 1.37s/it]
7807it [3:46:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7808it [3:46:59, 1.37s/it]
7809it [3:47:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7810it [3:47:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7811it [3:47:03, 1.37s/it]
7812it [3:47:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7813it [3:47:06, 1.40s/it]
7814it [3:47:07, 1.37s/it]
7815it [3:47:08, 1.35s/it]
7816it [3:47:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7817it [3:47:11, 1.37s/it]
7818it [3:47:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7819it [3:47:14, 1.39s/it]
7820it [3:47:15, 1.36s/it]
7821it [3:47:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7822it [3:47:18, 1.37s/it]
7823it [3:47:19, 1.36s/it]
7824it [3:47:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7825it [3:47:22, 1.37s/it]
7826it [3:47:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7827it [3:47:25, 1.38s/it]
7828it [3:47:26, 1.36s/it]
7829it [3:47:27, 1.34s/it]
7830it [3:47:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7831it [3:47:30, 1.37s/it]
7832it [3:47:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7833it [3:47:33, 1.38s/it]
7834it [3:47:34, 1.36s/it]
7835it [3:47:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7836it [3:47:37, 1.41s/it]
7837it [3:47:38, 1.38s/it]
7838it [3:47:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7839it [3:47:41, 1.37s/it]
7840it [3:47:42, 1.35s/it]
7841it [3:47:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7842it [3:47:45, 1.37s/it]
7843it [3:47:46, 1.35s/it]
7844it [3:47:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7845it [3:47:49, 1.36s/it]
7846it [3:47:50, 1.35s/it]
7847it [3:47:52, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7848it [3:47:53, 1.37s/it]
7849it [3:47:54, 1.34s/it]
7850it [3:47:56, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7851it [3:47:57, 1.36s/it]
7852it [3:47:58, 1.35s/it]
7853it [3:48:00, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7854it [3:48:02, 1.50s/it]
7855it [3:48:03, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7856it [3:48:05, 1.75s/it]
7857it [3:48:07, 1.61s/it]
7858it [3:48:08, 1.52s/it]
7859it [3:48:09, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7860it [3:48:11, 1.42s/it]
7861it [3:48:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7862it [3:48:13, 1.40s/it]
7863it [3:48:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7864it [3:48:16, 1.39s/it]
7865it [3:48:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7866it [3:48:19, 1.40s/it]
7867it [3:48:20, 1.37s/it]
7868it [3:48:22, 1.35s/it]
7869it [3:48:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7870it [3:48:24, 1.35s/it]
7871it [3:48:26, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7872it [3:48:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7873it [3:48:28, 1.41s/it]
7874it [3:48:30, 1.37s/it]
7875it [3:48:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7876it [3:48:32, 1.38s/it]
7877it [3:48:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7878it [3:48:35, 1.38s/it]
7879it [3:48:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7880it [3:48:38, 1.38s/it]
7881it [3:48:39, 1.36s/it]
7882it [3:48:41, 1.34s/it]
7883it [3:48:42, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7884it [3:48:43, 1.35s/it]
7885it [3:48:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7886it [3:48:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7887it [3:48:47, 1.39s/it]
7888it [3:48:49, 1.37s/it]
7889it [3:48:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7890it [3:48:52, 1.39s/it]
7891it [3:48:53, 1.37s/it]
7892it [3:48:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7893it [3:48:56, 1.39s/it]
7894it [3:48:57, 1.36s/it]
7895it [3:48:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7896it [3:49:00, 1.39s/it]
7897it [3:49:01, 1.36s/it]
7898it [3:49:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7899it [3:49:04, 1.39s/it]
7900it [3:49:05, 1.37s/it]
7901it [3:49:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7902it [3:49:08, 1.40s/it]
7903it [3:49:09, 1.38s/it]
7904it [3:49:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7905it [3:49:12, 1.40s/it]
7906it [3:49:13, 1.37s/it]
7907it [3:49:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7908it [3:49:16, 1.40s/it]
7909it [3:49:18, 1.36s/it]
7910it [3:49:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7911it [3:49:20, 1.38s/it]
7912it [3:49:22, 1.36s/it]
7913it [3:49:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7914it [3:49:24, 1.38s/it]
7915it [3:49:26, 1.36s/it]
7916it [3:49:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7917it [3:49:28, 1.37s/it]
7918it [3:49:30, 1.35s/it]
7919it [3:49:31, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7920it [3:49:32, 1.37s/it]
7921it [3:49:34, 1.35s/it]
7922it [3:49:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7923it [3:49:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7924it [3:49:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7925it [3:49:40, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7926it [3:49:41, 1.56s/it]
7927it [3:49:43, 1.48s/it]
7928it [3:49:44, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7929it [3:49:45, 1.44s/it]
7930it [3:49:47, 1.41s/it]
7931it [3:49:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7932it [3:49:50, 1.43s/it]
7933it [3:49:51, 1.43s/it]
7934it [3:49:52, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7935it [3:49:54, 1.44s/it]
7936it [3:49:55, 1.40s/it]
7937it [3:49:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7938it [3:49:58, 1.38s/it]
7939it [3:49:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7940it [3:50:05, 2.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7941it [3:50:08, 2.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7942it [3:50:09, 2.36s/it]
7943it [3:50:11, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7944it [3:50:12, 1.87s/it]
7945it [3:50:13, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7946it [3:50:15, 1.73s/it]
7947it [3:50:17, 1.61s/it]
7948it [3:50:18, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7949it [3:50:19, 1.51s/it]
7950it [3:50:21, 1.45s/it]
7951it [3:50:22, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7952it [3:50:24, 1.47s/it]
7953it [3:50:25, 1.42s/it]
7954it [3:50:26, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7955it [3:50:28, 1.43s/it]
7956it [3:50:29, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7957it [3:50:33, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7958it [3:50:34, 1.90s/it]
7959it [3:50:36, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7960it [3:50:37, 1.65s/it]
7961it [3:50:38, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7962it [3:50:40, 1.52s/it]
7963it [3:50:41, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7964it [3:50:43, 1.47s/it]
7965it [3:50:44, 1.42s/it]
7966it [3:50:45, 1.39s/it]
7967it [3:50:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7968it [3:50:48, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7969it [3:50:50, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7970it [3:50:54, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7971it [3:50:55, 2.07s/it]
7972it [3:50:57, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7973it [3:50:58, 1.79s/it]
7974it [3:51:00, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7975it [3:51:01, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7976it [3:51:05, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7977it [3:51:06, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7978it [3:51:08, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7979it [3:51:10, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7980it [3:51:13, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7981it [3:51:15, 2.15s/it]
7982it [3:51:16, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7983it [3:51:18, 1.77s/it]
7984it [3:51:19, 1.63s/it]
7985it [3:51:20, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7986it [3:51:22, 1.51s/it]
7987it [3:51:23, 1.45s/it]
7988it [3:51:25, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7989it [3:51:26, 1.43s/it]
7990it [3:51:27, 1.40s/it]
7991it [3:51:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7992it [3:51:30, 1.39s/it]
7993it [3:51:31, 1.38s/it]
7994it [3:51:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7995it [3:51:34, 1.40s/it]
7996it [3:51:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7997it [3:51:37, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7998it [3:51:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7999it [3:51:40, 1.39s/it]
8000it [3:51:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8001it [3:51:42, 1.40s/it]
8002it [3:51:44, 1.37s/it]
8003it [3:51:45, 1.35s/it]
8004it [3:51:46, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8005it [3:51:48, 1.38s/it]
8006it [3:51:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8007it [3:51:51, 1.41s/it]
8008it [3:51:52, 1.38s/it]
8009it [3:51:53, 1.35s/it]
8010it [3:51:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8011it [3:51:56, 1.36s/it]
8012it [3:51:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8013it [3:51:59, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8014it [3:52:01, 1.51s/it]
8015it [3:52:02, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8016it [3:52:04, 1.46s/it]
8017it [3:52:05, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8018it [3:52:06, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8019it [3:52:08, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8020it [3:52:10, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8021it [3:52:14, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8022it [3:52:16, 2.30s/it]
8023it [3:52:17, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8024it [3:52:19, 1.87s/it]
8025it [3:52:20, 1.70s/it]
8026it [3:52:22, 1.57s/it]
8027it [3:52:23, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8028it [3:52:24, 1.48s/it]
8029it [3:52:26, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8030it [3:52:27, 1.46s/it]
8031it [3:52:28, 1.42s/it]
8032it [3:52:30, 1.38s/it]
8033it [3:52:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8034it [3:52:33, 1.41s/it]
8035it [3:52:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8036it [3:52:35, 1.42s/it]
8037it [3:52:37, 1.39s/it]
8038it [3:52:38, 1.36s/it]
8039it [3:52:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8040it [3:52:41, 1.38s/it]
8041it [3:52:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8042it [3:52:44, 1.41s/it]
8043it [3:52:45, 1.38s/it]
8044it [3:52:46, 1.35s/it]
8045it [3:52:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8046it [3:52:49, 1.38s/it]
8047it [3:52:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8048it [3:52:53, 1.70s/it]
8049it [3:52:54, 1.58s/it]
8050it [3:52:55, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8051it [3:52:57, 1.51s/it]
8052it [3:52:58, 1.45s/it]
8053it [3:53:00, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8054it [3:53:01, 1.43s/it]
8055it [3:53:02, 1.39s/it]
8056it [3:53:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8057it [3:53:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8058it [3:53:06, 1.38s/it]
8059it [3:53:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8060it [3:53:09, 1.40s/it]
8061it [3:53:10, 1.37s/it]
8062it [3:53:12, 1.35s/it]
8063it [3:53:13, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8064it [3:53:15, 1.38s/it]
8065it [3:53:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8066it [3:53:18, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8067it [3:53:19, 1.49s/it]
8068it [3:53:20, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8069it [3:53:22, 1.45s/it]
8070it [3:53:23, 1.40s/it]
8071it [3:53:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8072it [3:53:26, 1.39s/it]
8073it [3:53:27, 1.36s/it]
8074it [3:53:29, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8075it [3:53:31, 1.57s/it]
8076it [3:53:32, 1.49s/it]
8077it [3:53:33, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8078it [3:53:35, 1.44s/it]
8079it [3:53:36, 1.40s/it]
8080it [3:53:37, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8081it [3:53:39, 1.43s/it]
8082it [3:53:40, 1.40s/it]
8083it [3:53:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8084it [3:53:43, 1.41s/it]
8085it [3:53:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8086it [3:53:46, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8087it [3:53:47, 1.43s/it]
8088it [3:53:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8089it [3:53:50, 1.43s/it]
8090it [3:53:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8091it [3:53:53, 1.42s/it]
8092it [3:53:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8093it [3:53:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8094it [3:53:57, 1.44s/it]
8095it [3:53:59, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8096it [3:54:00, 1.42s/it]
8097it [3:54:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8098it [3:54:03, 1.39s/it]
8099it [3:54:04, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8100it [3:54:06, 1.41s/it]
8101it [3:54:07, 1.38s/it]
8102it [3:54:08, 1.37s/it]
8103it [3:54:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8104it [3:54:11, 1.40s/it]
8105it [3:54:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8106it [3:54:15, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8107it [3:54:23, 3.57s/it]
8108it [3:54:24, 2.90s/it]
8109it [3:54:26, 2.43s/it]
8110it [3:54:27, 2.09s/it]
8111it [3:54:28, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8112it [3:54:30, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8113it [3:54:33, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8114it [3:54:34, 2.01s/it]
8115it [3:54:36, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8116it [3:54:37, 1.72s/it]
8117it [3:54:39, 1.61s/it]
8118it [3:54:40, 1.52s/it]
8119it [3:54:41, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8120it [3:54:43, 1.46s/it]
8121it [3:54:44, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8122it [3:54:48, 2.23s/it]
8123it [3:54:50, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8124it [3:54:56, 3.34s/it]
8125it [3:54:57, 2.73s/it]
8126it [3:54:59, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8127it [3:55:00, 2.02s/it]
8128it [3:55:01, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8129it [3:55:03, 1.68s/it]
8130it [3:55:04, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8131it [3:55:06, 1.56s/it]
8132it [3:55:07, 1.49s/it]
8133it [3:55:08, 1.44s/it]
8134it [3:55:10, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8135it [3:55:11, 1.41s/it]
8136it [3:55:12, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8137it [3:55:14, 1.41s/it]
8138it [3:55:15, 1.38s/it]
8139it [3:55:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8140it [3:55:18, 1.40s/it]
8141it [3:55:19, 1.37s/it]
8142it [3:55:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8143it [3:55:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8144it [3:55:23, 1.40s/it]
8145it [3:55:25, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8146it [3:55:26, 1.40s/it]
8147it [3:55:27, 1.37s/it]
8148it [3:55:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8149it [3:55:30, 1.42s/it]
8150it [3:55:32, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8151it [3:55:33, 1.44s/it]
8152it [3:55:35, 1.40s/it]
8153it [3:55:36, 1.37s/it]
8154it [3:55:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8155it [3:55:39, 1.39s/it]
8156it [3:55:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8157it [3:55:42, 1.60s/it]
8158it [3:55:43, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8159it [3:55:46, 1.80s/it]
8160it [3:55:47, 1.65s/it]
8161it [3:55:48, 1.54s/it]
8162it [3:55:50, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8163it [3:55:51, 1.46s/it]
8164it [3:55:52, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8165it [3:55:54, 1.43s/it]
8166it [3:55:55, 1.39s/it]
8167it [3:55:57, 1.37s/it]
8168it [3:55:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8169it [3:55:59, 1.39s/it]
8170it [3:56:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8171it [3:56:02, 1.40s/it]
8172it [3:56:03, 1.37s/it]
8173it [3:56:05, 1.35s/it]
8174it [3:56:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8175it [3:56:08, 1.38s/it]
8176it [3:56:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8177it [3:56:10, 1.37s/it]
8178it [3:56:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8179it [3:56:13, 1.40s/it]
8180it [3:56:14, 1.37s/it]
8181it [3:56:16, 1.36s/it]
8182it [3:56:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8183it [3:56:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8184it [3:56:20, 1.52s/it]
8185it [3:56:22, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8186it [3:56:23, 1.47s/it]
8187it [3:56:24, 1.42s/it]
8188it [3:56:26, 1.38s/it]
8189it [3:56:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8190it [3:56:28, 1.38s/it]
8191it [3:56:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8192it [3:56:32, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8193it [3:56:33, 1.51s/it]
8194it [3:56:34, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8195it [3:56:36, 1.46s/it]
8196it [3:56:37, 1.42s/it]
8197it [3:56:39, 1.39s/it]
8198it [3:56:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8199it [3:56:41, 1.39s/it]
8200it [3:56:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8201it [3:56:47, 2.10s/it]
8202it [3:56:48, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8203it [3:56:55, 3.40s/it]
8204it [3:56:56, 2.78s/it]
8205it [3:56:57, 2.33s/it]
8206it [3:56:59, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8207it [3:57:00, 1.85s/it]
8208it [3:57:01, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8209it [3:57:03, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8210it [3:57:05, 1.60s/it]
8211it [3:57:06, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8212it [3:57:07, 1.52s/it]
8213it [3:57:09, 1.46s/it]
8214it [3:57:10, 1.42s/it]
8215it [3:57:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8216it [3:57:13, 1.40s/it]
8217it [3:57:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8218it [3:57:17, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8219it [3:57:18, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8220it [3:57:20, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8221it [3:57:21, 1.54s/it]
8222it [3:57:22, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8223it [3:57:24, 1.49s/it]
8224it [3:57:25, 1.44s/it]
8225it [3:57:27, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8226it [3:57:28, 1.42s/it]
8227it [3:57:29, 1.39s/it]
8228it [3:57:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8229it [3:57:32, 1.42s/it]
8230it [3:57:34, 1.39s/it]
8231it [3:57:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8232it [3:57:39, 2.14s/it]
8233it [3:57:40, 1.89s/it]
8234it [3:57:41, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8235it [3:57:43, 1.64s/it]
8236it [3:57:44, 1.54s/it]
8237it [3:57:45, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8238it [3:57:47, 1.49s/it]
8239it [3:57:48, 1.43s/it]
8240it [3:57:50, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8241it [3:57:51, 1.41s/it]
8242it [3:57:52, 1.38s/it]
8243it [3:57:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8244it [3:57:55, 1.40s/it]
8245it [3:57:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8246it [3:57:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8247it [3:57:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8248it [3:58:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8249it [3:58:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8250it [3:58:03, 1.41s/it]
8251it [3:58:05, 1.38s/it]
8252it [3:58:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8253it [3:58:08, 1.38s/it]
8254it [3:58:09, 1.36s/it]
8255it [3:58:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8256it [3:58:12, 1.38s/it]
8257it [3:58:13, 1.36s/it]
8258it [3:58:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8259it [3:58:16, 1.38s/it]
8260it [3:58:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8261it [3:58:21, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8262it [3:58:23, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8263it [3:58:25, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8264it [3:58:27, 1.98s/it]
8265it [3:58:28, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8266it [3:58:30, 1.69s/it]
8267it [3:58:31, 1.57s/it]
8268it [3:58:32, 1.49s/it]
8269it [3:58:34, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8270it [3:58:35, 1.43s/it]
8271it [3:58:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8272it [3:58:38, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8273it [3:58:40, 1.57s/it]
8274it [3:58:41, 1.48s/it]
8275it [3:58:42, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8276it [3:58:44, 1.45s/it]
8277it [3:58:45, 1.41s/it]
8278it [3:58:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8279it [3:58:48, 1.44s/it]
8280it [3:58:50, 1.41s/it]
8281it [3:58:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8282it [3:58:52, 1.44s/it]
8283it [3:58:54, 1.40s/it]
8284it [3:58:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8285it [3:58:56, 1.41s/it]
8286it [3:58:58, 1.37s/it]
8287it [3:58:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8288it [3:59:01, 1.39s/it]
8289it [3:59:02, 1.37s/it]
8290it [3:59:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8291it [3:59:05, 1.39s/it]
8292it [3:59:06, 1.37s/it]
8293it [3:59:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8294it [3:59:09, 1.37s/it]
8295it [3:59:10, 1.35s/it]
8296it [3:59:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8297it [3:59:13, 1.38s/it]
8298it [3:59:14, 1.36s/it]
8299it [3:59:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8300it [3:59:17, 1.36s/it]
8301it [3:59:18, 1.34s/it]
8302it [3:59:19, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8303it [3:59:21, 1.38s/it]
8304it [3:59:22, 1.36s/it]
8305it [3:59:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8306it [3:59:25, 1.39s/it]
8307it [3:59:26, 1.36s/it]
8308it [3:59:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8309it [3:59:34, 2.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8310it [3:59:43, 4.79s/it]
8311it [3:59:45, 3.75s/it]
8312it [3:59:46, 3.01s/it]
8313it [3:59:47, 2.50s/it]
8314it [3:59:49, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8315it [3:59:50, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8316it [3:59:53, 2.20s/it]
8317it [3:59:54, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8318it [3:59:56, 1.80s/it]
8319it [3:59:57, 1.65s/it]
8320it [3:59:58, 1.54s/it]
8321it [3:59:59, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8322it [4:00:01, 1.46s/it]
8323it [4:00:02, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8324it [4:00:04, 1.42s/it]
8325it [4:00:05, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8326it [4:00:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8327it [4:00:08, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8328it [4:00:10, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8329it [4:00:11, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8330it [4:00:13, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8331it [4:00:14, 1.50s/it]
8332it [4:00:15, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8333it [4:00:17, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8334it [4:00:18, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8335it [4:00:20, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8336it [4:00:22, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8337it [4:00:23, 1.59s/it]
8338it [4:00:25, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8339it [4:00:26, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8340it [4:00:28, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8341it [4:00:29, 1.57s/it]
8342it [4:00:31, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8343it [4:00:32, 1.48s/it]
8344it [4:00:34, 1.43s/it]
8345it [4:00:35, 1.40s/it]
8346it [4:00:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8347it [4:00:38, 1.39s/it]
8348it [4:00:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8349it [4:00:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8350it [4:00:42, 1.41s/it]
8351it [4:00:43, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8352it [4:00:45, 1.46s/it]
8353it [4:00:46, 1.42s/it]
8354it [4:00:47, 1.39s/it]
8355it [4:00:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8356it [4:00:50, 1.39s/it]
8357it [4:00:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8358it [4:00:53, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8359it [4:00:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8360it [4:00:56, 1.42s/it]
8361it [4:00:57, 1.39s/it]
8362it [4:00:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8363it [4:01:00, 1.39s/it]
8364it [4:01:01, 1.37s/it]
8365it [4:01:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8366it [4:01:04, 1.38s/it]
8367it [4:01:05, 1.36s/it]
8368it [4:01:07, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8369it [4:01:08, 1.38s/it]
8370it [4:01:09, 1.35s/it]
8371it [4:01:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8372it [4:01:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8373it [4:01:14, 1.40s/it]
8374it [4:01:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8375it [4:01:18, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8376it [4:01:19, 1.76s/it]
8377it [4:01:21, 1.63s/it]
8378it [4:01:22, 1.53s/it]
8379it [4:01:23, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8380it [4:01:25, 1.47s/it]
8381it [4:01:26, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8382it [4:01:28, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8383it [4:01:29, 1.45s/it]
8384it [4:01:30, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8385it [4:01:32, 1.44s/it]
8386it [4:01:33, 1.40s/it]
8387it [4:01:35, 1.38s/it]
8388it [4:01:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8389it [4:01:40, 2.16s/it]
8390it [4:01:41, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8391it [4:01:48, 3.50s/it]
8392it [4:01:50, 2.84s/it]
8393it [4:01:51, 2.38s/it]
8394it [4:01:52, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8395it [4:01:54, 1.86s/it]
8396it [4:01:55, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8397it [4:01:56, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8398it [4:01:58, 1.55s/it]
8399it [4:01:59, 1.48s/it]
8400it [4:02:00, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8401it [4:02:02, 1.43s/it]
8402it [4:02:03, 1.39s/it]
8403it [4:02:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8404it [4:02:06, 1.38s/it]
8405it [4:02:07, 1.35s/it]
8406it [4:02:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8407it [4:02:10, 1.37s/it]
8408it [4:02:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8409it [4:02:13, 1.39s/it]
8410it [4:02:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8411it [4:02:16, 1.41s/it]
8412it [4:02:17, 1.39s/it]
8413it [4:02:18, 1.37s/it]
8414it [4:02:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8415it [4:02:21, 1.37s/it]
8416it [4:02:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8417it [4:02:24, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8418it [4:02:26, 1.50s/it]
8419it [4:02:27, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8420it [4:02:28, 1.46s/it]
8421it [4:02:30, 1.41s/it]
8422it [4:02:31, 1.38s/it]
8423it [4:02:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8424it [4:02:34, 1.40s/it]
8425it [4:02:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8426it [4:02:37, 1.54s/it]
8427it [4:02:38, 1.47s/it]
8428it [4:02:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8429it [4:02:41, 1.40s/it]
8430it [4:02:42, 1.37s/it]
8431it [4:02:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8432it [4:02:45, 1.40s/it]
8433it [4:02:46, 1.39s/it]
8434it [4:02:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8435it [4:02:49, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8436it [4:02:51, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8437it [4:02:52, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8438it [4:02:54, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8439it [4:02:55, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8440it [4:02:57, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8441it [4:02:58, 1.44s/it]
8442it [4:02:59, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8443it [4:03:01, 1.45s/it]
8444it [4:03:02, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8445it [4:03:04, 1.47s/it]
8446it [4:03:05, 1.42s/it]
8447it [4:03:07, 1.39s/it]
8448it [4:03:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8449it [4:03:09, 1.40s/it]
8450it [4:03:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8451it [4:03:12, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8452it [4:03:14, 1.42s/it]
8453it [4:03:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8454it [4:03:16, 1.42s/it]
8455it [4:03:18, 1.40s/it]
8456it [4:03:19, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8457it [4:03:20, 1.41s/it]
8458it [4:03:22, 1.38s/it]
8459it [4:03:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8460it [4:03:25, 1.40s/it]
8461it [4:03:26, 1.38s/it]
8462it [4:03:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8463it [4:03:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8464it [4:03:33, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8465it [4:03:34, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8466it [4:03:36, 1.81s/it]
8467it [4:03:37, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8468it [4:03:38, 1.60s/it]
8469it [4:03:40, 1.51s/it]
8470it [4:03:41, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8471it [4:03:43, 1.46s/it]
8472it [4:03:44, 1.42s/it]
8473it [4:03:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8474it [4:03:47, 1.43s/it]
8475it [4:03:48, 1.40s/it]
8476it [4:03:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8477it [4:03:51, 1.41s/it]
8478it [4:03:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8479it [4:03:54, 1.40s/it]
8480it [4:03:55, 1.37s/it]
8481it [4:03:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8482it [4:03:58, 1.37s/it]
8483it [4:03:59, 1.35s/it]
8484it [4:04:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8485it [4:04:02, 1.40s/it]
8486it [4:04:03, 1.37s/it]
8487it [4:04:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8488it [4:04:06, 1.52s/it]
8489it [4:04:08, 1.47s/it]
8490it [4:04:09, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8491it [4:04:11, 1.45s/it]
8492it [4:04:12, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8493it [4:04:13, 1.43s/it]
8494it [4:04:15, 1.39s/it]
8495it [4:04:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8496it [4:04:17, 1.40s/it]
8497it [4:04:19, 1.36s/it]
8498it [4:04:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8499it [4:04:21, 1.40s/it]
8500it [4:04:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8501it [4:04:24, 1.39s/it]
8502it [4:04:26, 1.36s/it]
8503it [4:04:27, 1.34s/it]
8504it [4:04:28, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8505it [4:04:30, 1.38s/it]
8506it [4:04:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8507it [4:04:33, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8508it [4:04:36, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8509it [4:04:37, 1.76s/it]
8510it [4:04:38, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8511it [4:04:40, 1.60s/it]
8512it [4:04:41, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8513it [4:04:43, 1.51s/it]
8514it [4:04:44, 1.45s/it]
8515it [4:04:45, 1.41s/it]
8516it [4:04:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8517it [4:04:48, 1.42s/it]
8518it [4:04:50, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8519it [4:04:51, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8520it [4:04:53, 1.45s/it]
8521it [4:04:54, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8522it [4:04:55, 1.44s/it]
8523it [4:04:57, 1.40s/it]
8524it [4:04:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8525it [4:04:59, 1.39s/it]
8526it [4:05:01, 1.36s/it]
8527it [4:05:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8528it [4:05:03, 1.38s/it]
8529it [4:05:05, 1.36s/it]
8530it [4:05:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8531it [4:05:08, 1.39s/it]
8532it [4:05:09, 1.37s/it]
8533it [4:05:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8534it [4:05:12, 1.39s/it]
8535it [4:05:13, 1.36s/it]
8536it [4:05:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8537it [4:05:16, 1.37s/it]
8538it [4:05:17, 1.35s/it]
8539it [4:05:18, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8540it [4:05:20, 1.37s/it]
8541it [4:05:21, 1.35s/it]
8542it [4:05:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8543it [4:05:28, 2.60s/it]
8544it [4:05:29, 2.21s/it]
8545it [4:05:30, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8546it [4:05:36, 3.09s/it]
8547it [4:05:38, 2.55s/it]
8548it [4:05:39, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8549it [4:05:44, 3.09s/it]
8550it [4:05:45, 2.56s/it]
8551it [4:05:47, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8552it [4:05:49, 2.08s/it]
8553it [4:05:50, 1.86s/it]
8554it [4:05:51, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8555it [4:05:56, 2.47s/it]
8556it [4:05:57, 2.12s/it]
8557it [4:05:58, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8558it [4:06:00, 1.79s/it]
8559it [4:06:01, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8560it [4:06:03, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8561it [4:06:06, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8562it [4:06:07, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8563it [4:06:08, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8564it [4:06:10, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8565it [4:06:11, 1.57s/it]
8566it [4:06:13, 1.49s/it]
8567it [4:06:14, 1.43s/it]
8568it [4:06:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8569it [4:06:17, 1.40s/it]
8570it [4:06:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8571it [4:06:20, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8572it [4:06:21, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8573it [4:06:23, 1.67s/it]
8574it [4:06:25, 1.57s/it]
8575it [4:06:26, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8576it [4:06:28, 1.49s/it]
8577it [4:06:29, 1.43s/it]
8578it [4:06:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8579it [4:06:32, 1.41s/it]
8580it [4:06:33, 1.38s/it]
8581it [4:06:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8582it [4:06:36, 1.39s/it]
8583it [4:06:37, 1.36s/it]
8584it [4:06:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8585it [4:06:40, 1.37s/it]
8586it [4:06:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8587it [4:06:42, 1.38s/it]
8588it [4:06:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8589it [4:06:45, 1.40s/it]
8590it [4:06:47, 1.37s/it]
8591it [4:06:48, 1.35s/it]
8592it [4:06:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8593it [4:06:52, 1.77s/it]
8594it [4:06:53, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8595it [4:06:55, 1.59s/it]
8596it [4:06:56, 1.50s/it]
8597it [4:06:57, 1.44s/it]
8598it [4:06:59, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8599it [4:07:00, 1.42s/it]
8600it [4:07:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8601it [4:07:03, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8602it [4:07:05, 1.46s/it]
8603it [4:07:06, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8604it [4:07:07, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8605it [4:07:09, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8606it [4:07:10, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8607it [4:07:12, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8608it [4:07:13, 1.49s/it]
8609it [4:07:15, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8610it [4:07:16, 1.44s/it]
8611it [4:07:17, 1.40s/it]
8612it [4:07:19, 1.37s/it]
8613it [4:07:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8614it [4:07:21, 1.37s/it]
8615it [4:07:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8616it [4:07:24, 1.39s/it]
8617it [4:07:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8618it [4:07:27, 1.49s/it]
8619it [4:07:29, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8620it [4:07:30, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8621it [4:07:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8622it [4:07:33, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8623it [4:07:34, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8624it [4:07:36, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8625it [4:07:38, 1.51s/it]
8626it [4:07:39, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8627it [4:07:40, 1.46s/it]
8628it [4:07:42, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8629it [4:07:43, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8630it [4:07:44, 1.43s/it]
8631it [4:07:46, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8632it [4:07:47, 1.42s/it]
8633it [4:07:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8634it [4:07:50, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8635it [4:07:52, 1.49s/it]
8636it [4:07:53, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8637it [4:07:55, 1.49s/it]
8638it [4:07:56, 1.43s/it]
8639it [4:07:57, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8640it [4:07:59, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8641it [4:08:00, 1.40s/it]
8642it [4:08:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8643it [4:08:03, 1.42s/it]
8644it [4:08:04, 1.39s/it]
8645it [4:08:06, 1.37s/it]
8646it [4:08:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8647it [4:08:09, 1.42s/it]
8648it [4:08:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8649it [4:08:11, 1.45s/it]
8650it [4:08:13, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8651it [4:08:14, 1.44s/it]
8652it [4:08:16, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8653it [4:08:17, 1.43s/it]
8654it [4:08:18, 1.39s/it]
8655it [4:08:20, 1.36s/it]
8656it [4:08:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8657it [4:08:22, 1.37s/it]
8658it [4:08:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8659it [4:08:25, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8660it [4:08:28, 1.77s/it]
8661it [4:08:29, 1.63s/it]
8662it [4:08:31, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8663it [4:08:32, 1.50s/it]
8664it [4:08:33, 1.44s/it]
8665it [4:08:35, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8666it [4:08:36, 1.42s/it]
8667it [4:08:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8668it [4:08:39, 1.40s/it]
8669it [4:08:40, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8670it [4:08:45, 2.45s/it]
8671it [4:08:46, 2.11s/it]
8672it [4:08:48, 1.88s/it]
8673it [4:08:49, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8674it [4:08:51, 1.74s/it]
8675it [4:08:52, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8676it [4:08:55, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8677it [4:09:03, 3.75s/it]
8678it [4:09:04, 3.02s/it]
8679it [4:09:06, 2.51s/it]
8680it [4:09:07, 2.15s/it]
8681it [4:09:08, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8682it [4:09:10, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8683it [4:09:16, 3.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8684it [4:09:20, 3.52s/it]
8685it [4:09:22, 2.85s/it]
8686it [4:09:23, 2.40s/it]
8687it [4:09:24, 2.08s/it]
8688it [4:09:26, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8689it [4:09:29, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8690it [4:09:31, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8691it [4:09:33, 2.03s/it]
8692it [4:09:34, 1.81s/it]
8693it [4:09:35, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8694it [4:09:37, 1.60s/it]
8695it [4:09:38, 1.52s/it]
8696it [4:09:39, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8697it [4:09:41, 1.45s/it]
8698it [4:09:42, 1.42s/it]
8699it [4:09:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8700it [4:09:45, 1.41s/it]
8701it [4:09:46, 1.38s/it]
8702it [4:09:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8703it [4:09:49, 1.40s/it]
8704it [4:09:50, 1.38s/it]
8705it [4:09:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8706it [4:09:53, 1.38s/it]
8707it [4:09:54, 1.36s/it]
8708it [4:09:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8709it [4:09:57, 1.39s/it]
8710it [4:09:58, 1.36s/it]
8711it [4:10:00, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8712it [4:10:01, 1.36s/it]
8713it [4:10:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8714it [4:10:04, 1.36s/it]
8715it [4:10:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8716it [4:10:07, 1.38s/it]
8717it [4:10:08, 1.35s/it]
8718it [4:10:09, 1.34s/it]
8719it [4:10:11, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8720it [4:10:12, 1.39s/it]
8721it [4:10:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8722it [4:10:15, 1.40s/it]
8723it [4:10:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8724it [4:10:18, 1.40s/it]
8725it [4:10:19, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8726it [4:10:21, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8727it [4:10:22, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8728it [4:10:23, 1.43s/it]
8729it [4:10:25, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8730it [4:10:26, 1.44s/it]
8731it [4:10:28, 1.41s/it]
8732it [4:10:29, 1.39s/it]
8733it [4:10:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8734it [4:10:32, 1.40s/it]
8735it [4:10:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8736it [4:10:35, 1.44s/it]
8737it [4:10:36, 1.40s/it]
8738it [4:10:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8739it [4:10:39, 1.40s/it]
8740it [4:10:40, 1.38s/it]
8741it [4:10:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8742it [4:10:43, 1.39s/it]
8743it [4:10:44, 1.37s/it]
8744it [4:10:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8745it [4:10:47, 1.38s/it]
8746it [4:10:48, 1.36s/it]
8747it [4:10:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8748it [4:10:51, 1.37s/it]
8749it [4:10:52, 1.35s/it]
8750it [4:10:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8751it [4:10:55, 1.37s/it]
8752it [4:10:56, 1.35s/it]
8753it [4:10:58, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8754it [4:10:59, 1.38s/it]
8755it [4:11:00, 1.37s/it]
8756it [4:11:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8757it [4:11:03, 1.38s/it]
8758it [4:11:05, 1.37s/it]
8759it [4:11:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8760it [4:11:07, 1.37s/it]
8761it [4:11:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8762it [4:11:10, 1.36s/it]
8763it [4:11:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8764it [4:11:13, 1.39s/it]
8765it [4:11:14, 1.36s/it]
8766it [4:11:15, 1.35s/it]
8767it [4:11:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8768it [4:11:18, 1.38s/it]
8769it [4:11:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8770it [4:11:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8771it [4:11:22, 1.40s/it]
8772it [4:11:24, 1.37s/it]
8773it [4:11:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8774it [4:11:26, 1.40s/it]
8775it [4:11:28, 1.38s/it]
8776it [4:11:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8777it [4:11:31, 1.39s/it]
8778it [4:11:32, 1.36s/it]
8779it [4:11:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8780it [4:11:35, 1.38s/it]
8781it [4:11:36, 1.35s/it]
8782it [4:11:37, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8783it [4:11:39, 1.36s/it]
8784it [4:11:40, 1.34s/it]
8785it [4:11:41, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8786it [4:11:43, 1.38s/it]
8787it [4:11:44, 1.35s/it]
8788it [4:11:45, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8789it [4:11:47, 1.39s/it]
8790it [4:11:48, 1.36s/it]
8791it [4:11:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8792it [4:11:51, 1.39s/it]
8793it [4:11:52, 1.37s/it]
8794it [4:11:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8795it [4:11:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8796it [4:11:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8797it [4:11:59, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8798it [4:12:01, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8799it [4:12:02, 1.66s/it]
8800it [4:12:04, 1.55s/it]
8801it [4:12:05, 1.48s/it]
8802it [4:12:06, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8803it [4:12:08, 1.46s/it]
8804it [4:12:09, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8805it [4:12:10, 1.44s/it]
8806it [4:12:12, 1.40s/it]
8807it [4:12:13, 1.37s/it]
8808it [4:12:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8809it [4:12:16, 1.51s/it]
8810it [4:12:18, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8811it [4:12:19, 1.45s/it]
8812it [4:12:20, 1.40s/it]
8813it [4:12:22, 1.37s/it]
8814it [4:12:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8815it [4:12:25, 1.43s/it]
8816it [4:12:26, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8817it [4:12:27, 1.43s/it]
8818it [4:12:29, 1.40s/it]
8819it [4:12:30, 1.37s/it]
8820it [4:12:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8821it [4:12:33, 1.38s/it]
8822it [4:12:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8823it [4:12:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8824it [4:12:37, 1.38s/it]
8825it [4:12:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8826it [4:12:40, 1.38s/it]
8827it [4:12:41, 1.36s/it]
8828it [4:12:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8829it [4:12:44, 1.40s/it]
8830it [4:12:45, 1.39s/it]
8831it [4:12:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8832it [4:12:48, 1.40s/it]
8833it [4:12:49, 1.36s/it]
8834it [4:12:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8835it [4:12:52, 1.38s/it]
8836it [4:12:53, 1.36s/it]
8837it [4:12:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8838it [4:12:56, 1.41s/it]
8839it [4:12:57, 1.39s/it]
8840it [4:12:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8841it [4:13:00, 1.41s/it]
8842it [4:13:02, 1.39s/it]
8843it [4:13:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8844it [4:13:04, 1.43s/it]
8845it [4:13:06, 1.39s/it]
8846it [4:13:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8847it [4:13:09, 1.42s/it]
8848it [4:13:10, 1.39s/it]
8849it [4:13:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8850it [4:13:13, 1.43s/it]
8851it [4:13:14, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8852it [4:13:16, 1.42s/it]
8853it [4:13:17, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8854it [4:13:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8855it [4:13:20, 1.42s/it]
8856it [4:13:21, 1.39s/it]
8857it [4:13:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8858it [4:13:24, 1.39s/it]
8859it [4:13:25, 1.36s/it]
8860it [4:13:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8861it [4:13:28, 1.37s/it]
8862it [4:13:29, 1.36s/it]
8863it [4:13:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8864it [4:13:32, 1.38s/it]
8865it [4:13:33, 1.36s/it]
8866it [4:13:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8867it [4:13:36, 1.38s/it]
8868it [4:13:37, 1.36s/it]
8869it [4:13:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8870it [4:13:40, 1.38s/it]
8871it [4:13:42, 1.36s/it]
8872it [4:13:43, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8873it [4:13:44, 1.36s/it]
8874it [4:13:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8875it [4:13:47, 1.37s/it]
8876it [4:13:48, 1.35s/it]
8877it [4:13:50, 1.33s/it]
8878it [4:13:51, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8879it [4:13:52, 1.34s/it]
8880it [4:13:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8881it [4:13:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8882it [4:13:56, 1.38s/it]
8883it [4:13:58, 1.35s/it]
8884it [4:13:59, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8885it [4:14:00, 1.37s/it]
8886it [4:14:02, 1.35s/it]
8887it [4:14:03, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8888it [4:14:04, 1.36s/it]
8889it [4:14:06, 1.35s/it]
8890it [4:14:07, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8891it [4:14:09, 1.36s/it]
8892it [4:14:10, 1.35s/it]
8893it [4:14:11, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8894it [4:14:13, 1.35s/it]
8895it [4:14:14, 1.34s/it]
8896it [4:14:15, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8897it [4:14:17, 1.37s/it]
8898it [4:14:18, 1.36s/it]
8899it [4:14:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8900it [4:14:21, 1.44s/it]
8901it [4:14:22, 1.40s/it]
8902it [4:14:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8903it [4:14:25, 1.40s/it]
8904it [4:14:26, 1.38s/it]
8905it [4:14:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8906it [4:14:30, 1.66s/it]
8907it [4:14:31, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8908it [4:14:36, 2.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8909it [4:14:38, 2.27s/it]
8910it [4:14:39, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8911it [4:14:41, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8912it [4:14:45, 2.52s/it]
8913it [4:14:46, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8914it [4:14:48, 1.95s/it]
8915it [4:14:49, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8916it [4:14:50, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8917it [4:14:52, 1.58s/it]
8918it [4:14:53, 1.49s/it]
8919it [4:14:54, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8920it [4:14:56, 1.43s/it]
8921it [4:14:57, 1.40s/it]
8922it [4:14:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8923it [4:15:00, 1.41s/it]
8924it [4:15:01, 1.39s/it]
8925it [4:15:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8926it [4:15:04, 1.39s/it]
8927it [4:15:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8928it [4:15:07, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8929it [4:15:08, 1.42s/it]
8930it [4:15:09, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8931it [4:15:11, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8932it [4:15:12, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8933it [4:15:14, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8934it [4:15:15, 1.41s/it]
8935it [4:15:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8936it [4:15:18, 1.41s/it]
8937it [4:15:19, 1.37s/it]
8938it [4:15:21, 1.37s/it]
8939it [4:15:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8940it [4:15:23, 1.38s/it]
8941it [4:15:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8942it [4:15:26, 1.40s/it]
8943it [4:15:27, 1.37s/it]
8944it [4:15:29, 1.35s/it]
8945it [4:15:30, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8946it [4:15:31, 1.36s/it]
8947it [4:15:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8948it [4:15:34, 1.38s/it]
8949it [4:15:36, 1.36s/it]
8950it [4:15:37, 1.35s/it]
8951it [4:15:38, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8952it [4:15:40, 1.36s/it]
8953it [4:15:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8954it [4:15:42, 1.38s/it]
8955it [4:15:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8956it [4:15:45, 1.41s/it]
8957it [4:15:47, 1.39s/it]
8958it [4:15:48, 1.38s/it]
8959it [4:15:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8960it [4:15:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8961it [4:15:52, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8962it [4:15:54, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8963it [4:15:55, 1.52s/it]
8964it [4:15:57, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8965it [4:15:58, 1.46s/it]
8966it [4:16:00, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8967it [4:16:01, 1.43s/it]
8968it [4:16:02, 1.40s/it]
8969it [4:16:04, 1.39s/it]
8970it [4:16:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8971it [4:16:06, 1.38s/it]
8972it [4:16:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8973it [4:16:09, 1.39s/it]
8974it [4:16:10, 1.36s/it]
8975it [4:16:12, 1.34s/it]
8976it [4:16:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8977it [4:16:15, 1.36s/it]
8978it [4:16:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8979it [4:16:17, 1.39s/it]
8980it [4:16:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8981it [4:16:20, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8982it [4:16:22, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8983it [4:16:24, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8984it [4:16:26, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8985it [4:16:29, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8986it [4:16:32, 2.31s/it]
8987it [4:16:33, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8988it [4:16:34, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8989it [4:16:36, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8990it [4:16:37, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8991it [4:16:39, 1.61s/it]
8992it [4:16:40, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8993it [4:16:42, 1.53s/it]
8994it [4:16:43, 1.46s/it]
8995it [4:16:44, 1.41s/it]
8996it [4:16:46, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8997it [4:16:47, 1.40s/it]
8998it [4:16:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8999it [4:16:50, 1.39s/it]
9000it [4:16:51, 1.37s/it]
9001it [4:16:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9002it [4:16:54, 1.39s/it]
9003it [4:16:55, 1.36s/it]
9004it [4:16:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9005it [4:16:59, 1.67s/it]
9006it [4:17:00, 1.56s/it]
9007it [4:17:02, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9008it [4:17:03, 1.47s/it]
9009it [4:17:04, 1.42s/it]
9010it [4:17:06, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9011it [4:17:07, 1.40s/it]
9012it [4:17:08, 1.37s/it]
9013it [4:17:10, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9014it [4:17:11, 1.40s/it]
9015it [4:17:13, 1.38s/it]
9016it [4:17:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9017it [4:17:15, 1.39s/it]
9018it [4:17:17, 1.36s/it]
9019it [4:17:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9020it [4:17:19, 1.40s/it]
9021it [4:17:21, 1.38s/it]
9022it [4:17:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9023it [4:17:24, 1.41s/it]
9024it [4:17:25, 1.38s/it]
9025it [4:17:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9026it [4:17:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9027it [4:17:29, 1.42s/it]
9028it [4:17:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9029it [4:17:32, 1.42s/it]
9030it [4:17:33, 1.40s/it]
9031it [4:17:35, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9032it [4:17:36, 1.43s/it]
9033it [4:17:37, 1.39s/it]
9034it [4:17:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9035it [4:17:40, 1.39s/it]
9036it [4:17:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9037it [4:17:44, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9038it [4:17:46, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9039it [4:17:47, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9040it [4:17:49, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9041it [4:17:50, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9042it [4:17:52, 1.51s/it]
9043it [4:17:53, 1.45s/it]
9044it [4:17:54, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9045it [4:17:56, 1.43s/it]
9046it [4:17:57, 1.40s/it]
9047it [4:17:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9048it [4:18:00, 1.43s/it]
9049it [4:18:01, 1.41s/it]
9050it [4:18:03, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9051it [4:18:04, 1.42s/it]
9052it [4:18:05, 1.40s/it]
9053it [4:18:07, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9054it [4:18:08, 1.38s/it]
9055it [4:18:09, 1.36s/it]
9056it [4:18:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9057it [4:18:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9058it [4:18:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9059it [4:18:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9060it [4:18:16, 1.41s/it]
9061it [4:18:18, 1.38s/it]
9062it [4:18:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9063it [4:18:21, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9064it [4:18:23, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9065it [4:18:26, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9066it [4:18:31, 3.01s/it]
9067it [4:18:33, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9068it [4:18:39, 3.80s/it]
9069it [4:18:41, 3.05s/it]
9070it [4:18:42, 2.52s/it]
9071it [4:18:43, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9072it [4:18:45, 2.04s/it]
9073it [4:18:46, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9074it [4:18:48, 1.70s/it]
9075it [4:18:49, 1.58s/it]
9076it [4:18:50, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9077it [4:18:52, 1.49s/it]
9078it [4:18:53, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9079it [4:18:55, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9080it [4:18:56, 1.45s/it]
9081it [4:18:57, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9082it [4:19:04, 3.04s/it]
9083it [4:19:06, 2.52s/it]
9084it [4:19:07, 2.16s/it]
9085it [4:19:08, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9086it [4:19:11, 2.09s/it]
9087it [4:19:12, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9088it [4:19:13, 1.75s/it]
9089it [4:19:15, 1.61s/it]
9090it [4:19:16, 1.52s/it]
9091it [4:19:17, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9092it [4:19:19, 1.45s/it]
9093it [4:19:20, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9094it [4:19:22, 1.44s/it]
9095it [4:19:23, 1.40s/it]
9096it [4:19:24, 1.38s/it]
9097it [4:19:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9098it [4:19:27, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9099it [4:19:31, 2.09s/it]
9100it [4:19:32, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9101it [4:19:34, 1.76s/it]
9102it [4:19:35, 1.62s/it]
9103it [4:19:36, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9104it [4:19:38, 1.53s/it]
9105it [4:19:39, 1.46s/it]
9106it [4:19:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9107it [4:19:42, 1.42s/it]
9108it [4:19:43, 1.38s/it]
9109it [4:19:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9110it [4:19:46, 1.39s/it]
9111it [4:19:47, 1.36s/it]
9112it [4:19:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9113it [4:19:50, 1.38s/it]
9114it [4:19:51, 1.35s/it]
9115it [4:19:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9116it [4:19:54, 1.40s/it]
9117it [4:19:55, 1.37s/it]
9118it [4:19:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9119it [4:19:59, 1.65s/it]
9120it [4:20:00, 1.54s/it]
9121it [4:20:02, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9122it [4:20:03, 1.49s/it]
9123it [4:20:05, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9124it [4:20:06, 1.46s/it]
9125it [4:20:07, 1.42s/it]
9126it [4:20:09, 1.38s/it]
9127it [4:20:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9128it [4:20:11, 1.39s/it]
9129it [4:20:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9130it [4:20:15, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9131it [4:20:16, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9132it [4:20:18, 1.57s/it]
9133it [4:20:19, 1.49s/it]
9134it [4:20:21, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9135it [4:20:22, 1.44s/it]
9136it [4:20:23, 1.40s/it]
9137it [4:20:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9138it [4:20:26, 1.38s/it]
9139it [4:20:27, 1.36s/it]
9140it [4:20:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9141it [4:20:30, 1.40s/it]
9142it [4:20:31, 1.37s/it]
9143it [4:20:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9144it [4:20:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9145it [4:20:36, 1.37s/it]
9146it [4:20:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9147it [4:20:38, 1.38s/it]
9148it [4:20:40, 1.36s/it]
9149it [4:20:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9150it [4:20:42, 1.37s/it]
9151it [4:20:44, 1.34s/it]
9152it [4:20:45, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9153it [4:20:47, 1.54s/it]
9154it [4:20:48, 1.46s/it]
9155it [4:20:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9156it [4:20:51, 1.43s/it]
9157it [4:20:52, 1.39s/it]
9158it [4:20:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9159it [4:20:55, 1.39s/it]
9160it [4:20:56, 1.36s/it]
9161it [4:20:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9162it [4:20:59, 1.37s/it]
9163it [4:21:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9164it [4:21:02, 1.37s/it]
9165it [4:21:03, 1.35s/it]
9166it [4:21:04, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9167it [4:21:06, 1.37s/it]
9168it [4:21:07, 1.36s/it]
9169it [4:21:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9170it [4:21:10, 1.38s/it]
9171it [4:21:11, 1.35s/it]
9172it [4:21:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9173it [4:21:14, 1.40s/it]
9174it [4:21:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9175it [4:21:17, 1.38s/it]
9176it [4:21:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9177it [4:21:20, 1.38s/it]
9178it [4:21:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9179it [4:21:22, 1.41s/it]
9180it [4:21:24, 1.38s/it]
9181it [4:21:25, 1.35s/it]
9182it [4:21:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9183it [4:21:28, 1.37s/it]
9184it [4:21:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9185it [4:21:31, 1.41s/it]
9186it [4:21:32, 1.39s/it]
9187it [4:21:33, 1.37s/it]
9188it [4:21:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9189it [4:21:36, 1.37s/it]
9190it [4:21:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9191it [4:21:39, 1.39s/it]
9192it [4:21:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9193it [4:21:42, 1.40s/it]
9194it [4:21:43, 1.37s/it]
9195it [4:21:44, 1.34s/it]
9196it [4:21:45, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9197it [4:21:47, 1.36s/it]
9198it [4:21:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9199it [4:21:50, 1.36s/it]
9200it [4:21:51, 1.34s/it]
9201it [4:21:52, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9202it [4:21:54, 1.36s/it]
9203it [4:21:55, 1.35s/it]
9204it [4:21:56, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9205it [4:21:58, 1.37s/it]
9206it [4:21:59, 1.35s/it]
9207it [4:22:00, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9208it [4:22:02, 1.36s/it]
9209it [4:22:03, 1.33s/it]
9210it [4:22:04, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9211it [4:22:06, 1.36s/it]
9212it [4:22:07, 1.34s/it]
9213it [4:22:08, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9214it [4:22:10, 1.35s/it]
9215it [4:22:11, 1.32s/it]
9216it [4:22:12, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9217it [4:22:14, 1.34s/it]
9218it [4:22:15, 1.33s/it]
9219it [4:22:16, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9220it [4:22:18, 1.35s/it]
9221it [4:22:19, 1.33s/it]
9222it [4:22:20, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9223it [4:22:22, 1.36s/it]
9224it [4:22:23, 1.34s/it]
9225it [4:22:24, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9226it [4:22:26, 1.37s/it]
9227it [4:22:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9228it [4:22:29, 1.37s/it]
9229it [4:22:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9230it [4:22:31, 1.40s/it]
9231it [4:22:33, 1.37s/it]
9232it [4:22:34, 1.35s/it]
9233it [4:22:35, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9234it [4:22:37, 1.38s/it]
9235it [4:22:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9236it [4:22:39, 1.38s/it]
9237it [4:22:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9238it [4:22:42, 1.43s/it]
9239it [4:22:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9240it [4:22:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9241it [4:22:46, 1.40s/it]
9242it [4:22:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9243it [4:22:49, 1.41s/it]
9244it [4:22:51, 1.38s/it]
9245it [4:22:52, 1.36s/it]
9246it [4:22:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9247it [4:22:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9248it [4:23:01, 2.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9249it [4:23:03, 2.49s/it]
9250it [4:23:04, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9251it [4:23:05, 1.93s/it]
9252it [4:23:07, 1.75s/it]
9253it [4:23:08, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9254it [4:23:14, 2.82s/it]
9255it [4:23:15, 2.36s/it]
9256it [4:23:16, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9257it [4:23:18, 1.87s/it]
9258it [4:23:19, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9259it [4:23:21, 1.64s/it]
9260it [4:23:22, 1.54s/it]
9261it [4:23:23, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9262it [4:23:25, 1.46s/it]
9263it [4:23:26, 1.41s/it]
9264it [4:23:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9265it [4:23:29, 1.41s/it]
9266it [4:23:30, 1.38s/it]
9267it [4:23:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9268it [4:23:33, 1.41s/it]
9269it [4:23:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9270it [4:23:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9271it [4:23:37, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9272it [4:23:40, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9273it [4:23:41, 1.66s/it]
9274it [4:23:42, 1.55s/it]
9275it [4:23:44, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9276it [4:23:45, 1.47s/it]
9277it [4:23:46, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9278it [4:23:48, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9279it [4:23:53, 2.41s/it]
9280it [4:23:54, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9281it [4:24:01, 3.50s/it]
9282it [4:24:02, 2.85s/it]
9283it [4:24:03, 2.39s/it]
9284it [4:24:05, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9285it [4:24:06, 1.89s/it]
9286it [4:24:07, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9287it [4:24:10, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9288it [4:24:11, 1.70s/it]
9289it [4:24:12, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9290it [4:24:16, 2.16s/it]
9291it [4:24:17, 1.90s/it]
9292it [4:24:18, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9293it [4:24:20, 1.64s/it]
9294it [4:24:21, 1.55s/it]
9295it [4:24:22, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9296it [4:24:24, 1.46s/it]
9297it [4:24:25, 1.42s/it]
9298it [4:24:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9299it [4:24:28, 1.44s/it]
9300it [4:24:29, 1.40s/it]
9301it [4:24:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9302it [4:24:32, 1.39s/it]
9303it [4:24:33, 1.36s/it]
9304it [4:24:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9305it [4:24:36, 1.37s/it]
9306it [4:24:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9307it [4:24:41, 1.94s/it]
9308it [4:24:42, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9309it [4:24:44, 1.71s/it]
9310it [4:24:45, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9311it [4:24:46, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9312it [4:24:49, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9313it [4:24:50, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9314it [4:24:51, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9315it [4:24:53, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9316it [4:24:54, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9317it [4:24:56, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9318it [4:24:57, 1.45s/it]
9319it [4:24:58, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9320it [4:25:00, 1.44s/it]
9321it [4:25:01, 1.40s/it]
9322it [4:25:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9323it [4:25:04, 1.40s/it]
9324it [4:25:05, 1.39s/it]
9325it [4:25:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9326it [4:25:11, 2.38s/it]
9327it [4:25:13, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9328it [4:25:15, 2.06s/it]
9329it [4:25:16, 1.83s/it]
9330it [4:25:17, 1.67s/it]
9331it [4:25:19, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9332it [4:25:20, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9333it [4:25:23, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9334it [4:25:24, 1.76s/it]
9335it [4:25:26, 1.64s/it]
9336it [4:25:27, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9337it [4:25:30, 2.09s/it]
9338it [4:25:32, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9339it [4:25:33, 1.78s/it]
9340it [4:25:34, 1.63s/it]
9341it [4:25:36, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9342it [4:25:37, 1.52s/it]
9343it [4:25:39, 1.45s/it]
9344it [4:25:40, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9345it [4:25:41, 1.44s/it]
9346it [4:25:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9347it [4:25:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9348it [4:25:45, 1.41s/it]
9349it [4:25:47, 1.38s/it]
9350it [4:25:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9351it [4:25:50, 1.40s/it]
9352it [4:25:51, 1.37s/it]
9353it [4:25:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9354it [4:25:54, 1.40s/it]
9355it [4:25:55, 1.38s/it]
9356it [4:25:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9357it [4:26:01, 2.45s/it]
9358it [4:26:03, 2.10s/it]
9359it [4:26:04, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9360it [4:26:05, 1.74s/it]
9361it [4:26:07, 1.60s/it]
9362it [4:26:08, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9363it [4:26:10, 1.54s/it]
9364it [4:26:11, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9365it [4:26:12, 1.48s/it]
9366it [4:26:14, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9367it [4:26:15, 1.51s/it]
9368it [4:26:17, 1.46s/it]
9369it [4:26:18, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9370it [4:26:20, 1.60s/it]
9371it [4:26:21, 1.51s/it]
9372it [4:26:23, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9373it [4:26:24, 1.46s/it]
9374it [4:26:26, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9375it [4:26:27, 1.41s/it]
9376it [4:26:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9377it [4:26:30, 1.41s/it]
9378it [4:26:31, 1.39s/it]
9379it [4:26:32, 1.36s/it]
9380it [4:26:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9381it [4:26:35, 1.38s/it]
9382it [4:26:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9383it [4:26:38, 1.41s/it]
9384it [4:26:39, 1.38s/it]
9385it [4:26:41, 1.36s/it]
9386it [4:26:42, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9387it [4:26:43, 1.37s/it]
9388it [4:26:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9389it [4:26:46, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9390it [4:26:48, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9391it [4:26:49, 1.43s/it]
9392it [4:26:50, 1.41s/it]
9393it [4:26:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9394it [4:26:53, 1.41s/it]
9395it [4:26:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9396it [4:26:56, 1.40s/it]
9397it [4:26:57, 1.37s/it]
9398it [4:26:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9399it [4:27:00, 1.37s/it]
9400it [4:27:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9401it [4:27:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9402it [4:27:04, 1.41s/it]
9403it [4:27:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9404it [4:27:07, 1.40s/it]
9405it [4:27:08, 1.37s/it]
9406it [4:27:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9407it [4:27:12, 1.61s/it]
9408it [4:27:13, 1.52s/it]
9409it [4:27:14, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9410it [4:27:16, 1.46s/it]
9411it [4:27:17, 1.41s/it]
9412it [4:27:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9413it [4:27:20, 1.43s/it]
9414it [4:27:21, 1.41s/it]
9415it [4:27:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9416it [4:27:24, 1.40s/it]
9417it [4:27:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9418it [4:27:27, 1.46s/it]
9419it [4:27:28, 1.44s/it]
9420it [4:27:30, 1.41s/it]
9421it [4:27:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9422it [4:27:33, 1.40s/it]
9423it [4:27:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9424it [4:27:37, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9425it [4:27:38, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9426it [4:27:40, 1.70s/it]
9427it [4:27:41, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9428it [4:27:45, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9429it [4:27:47, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9430it [4:27:50, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9431it [4:27:52, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9432it [4:27:53, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9433it [4:27:55, 1.83s/it]
9434it [4:27:56, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9435it [4:27:57, 1.63s/it]
9436it [4:27:59, 1.54s/it]
9437it [4:28:00, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9438it [4:28:01, 1.46s/it]
9439it [4:28:03, 1.41s/it]
9440it [4:28:04, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9441it [4:28:06, 1.42s/it]
9442it [4:28:07, 1.38s/it]
9443it [4:28:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9444it [4:28:10, 1.39s/it]
9445it [4:28:11, 1.37s/it]
9446it [4:28:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9447it [4:28:14, 1.38s/it]
9448it [4:28:15, 1.36s/it]
9449it [4:28:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9450it [4:28:18, 1.38s/it]
9451it [4:28:19, 1.36s/it]
9452it [4:28:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9453it [4:28:22, 1.39s/it]
9454it [4:28:23, 1.36s/it]
9455it [4:28:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9456it [4:28:26, 1.38s/it]
9457it [4:28:27, 1.37s/it]
9458it [4:28:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9459it [4:28:30, 1.39s/it]
9460it [4:28:31, 1.36s/it]
9461it [4:28:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9462it [4:28:34, 1.40s/it]
9463it [4:28:36, 1.38s/it]
9464it [4:28:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9465it [4:28:38, 1.42s/it]
9466it [4:28:40, 1.39s/it]
9467it [4:28:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9468it [4:28:43, 1.43s/it]
9469it [4:28:44, 1.40s/it]
9470it [4:28:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9471it [4:28:47, 1.41s/it]
9472it [4:28:48, 1.39s/it]
9473it [4:28:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9474it [4:28:51, 1.42s/it]
9475it [4:28:52, 1.38s/it]
9476it [4:28:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9477it [4:28:55, 1.39s/it]
9478it [4:28:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9479it [4:28:58, 1.40s/it]
9480it [4:28:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9481it [4:29:01, 1.39s/it]
9482it [4:29:02, 1.36s/it]
9483it [4:29:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9484it [4:29:05, 1.38s/it]
9485it [4:29:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9486it [4:29:11, 2.44s/it]
9487it [4:29:12, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9488it [4:29:19, 3.42s/it]
9489it [4:29:20, 2.80s/it]
9490it [4:29:21, 2.35s/it]
9491it [4:29:23, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9492it [4:29:24, 1.86s/it]
9493it [4:29:25, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9494it [4:29:27, 1.61s/it]
9495it [4:29:28, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9496it [4:29:30, 1.50s/it]
9497it [4:29:31, 1.44s/it]
9498it [4:29:32, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9499it [4:29:34, 1.43s/it]
9500it [4:29:35, 1.39s/it]
9501it [4:29:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9502it [4:29:38, 1.39s/it]
9503it [4:29:39, 1.37s/it]
9504it [4:29:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9505it [4:29:42, 1.39s/it]
9506it [4:29:43, 1.38s/it]
9507it [4:29:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9508it [4:29:46, 1.39s/it]
9509it [4:29:47, 1.36s/it]
9510it [4:29:49, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9511it [4:29:50, 1.36s/it]
9512it [4:29:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9513it [4:29:53, 1.37s/it]
9514it [4:29:54, 1.35s/it]
9515it [4:29:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9516it [4:29:57, 1.38s/it]
9517it [4:29:58, 1.36s/it]
9518it [4:29:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9519it [4:30:01, 1.39s/it]
9520it [4:30:02, 1.36s/it]
9521it [4:30:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9522it [4:30:05, 1.36s/it]
9523it [4:30:06, 1.34s/it]
9524it [4:30:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9525it [4:30:09, 1.39s/it]
9526it [4:30:10, 1.38s/it]
9527it [4:30:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9528it [4:30:13, 1.41s/it]
9529it [4:30:15, 1.38s/it]
9530it [4:30:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9531it [4:30:17, 1.39s/it]
9532it [4:30:19, 1.37s/it]
9533it [4:30:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9534it [4:30:22, 1.40s/it]
9535it [4:30:23, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9536it [4:30:26, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9537it [4:30:28, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9538it [4:30:29, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9539it [4:30:31, 1.64s/it]
9540it [4:30:32, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9541it [4:30:34, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9542it [4:30:36, 1.69s/it]
9543it [4:30:37, 1.57s/it]
9544it [4:30:38, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9545it [4:30:40, 1.49s/it]
9546it [4:30:41, 1.43s/it]
9547it [4:30:42, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9548it [4:30:44, 1.43s/it]
9549it [4:30:45, 1.39s/it]
9550it [4:30:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9551it [4:30:48, 1.39s/it]
9552it [4:30:49, 1.37s/it]
9553it [4:30:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9554it [4:30:52, 1.42s/it]
9555it [4:30:53, 1.38s/it]
9556it [4:30:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9557it [4:30:57, 1.56s/it]
9558it [4:30:58, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9559it [4:30:59, 1.47s/it]
9560it [4:31:01, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9561it [4:31:02, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9562it [4:31:04, 1.44s/it]
9563it [4:31:05, 1.40s/it]
9564it [4:31:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9565it [4:31:08, 1.40s/it]
9566it [4:31:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9567it [4:31:12, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9568it [4:31:13, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9569it [4:31:15, 1.58s/it]
9570it [4:31:16, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9571it [4:31:17, 1.49s/it]
9572it [4:31:19, 1.44s/it]
9573it [4:31:20, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9574it [4:31:21, 1.43s/it]
9575it [4:31:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9576it [4:31:24, 1.44s/it]
9577it [4:31:26, 1.40s/it]
9578it [4:31:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9579it [4:31:28, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9580it [4:31:30, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9581it [4:31:31, 1.44s/it]
9582it [4:31:33, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9583it [4:31:34, 1.42s/it]
9584it [4:31:36, 1.39s/it]
9585it [4:31:37, 1.38s/it]
9586it [4:31:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9587it [4:31:40, 1.37s/it]
9588it [4:31:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9589it [4:31:42, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9590it [4:31:44, 1.46s/it]
9591it [4:31:45, 1.40s/it]
9592it [4:31:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9593it [4:31:48, 1.41s/it]
9594it [4:31:49, 1.38s/it]
9595it [4:31:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9596it [4:31:52, 1.41s/it]
9597it [4:31:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9598it [4:31:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9599it [4:31:56, 1.43s/it]
9600it [4:31:58, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9601it [4:31:59, 1.44s/it]
9602it [4:32:01, 1.40s/it]
9603it [4:32:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9604it [4:32:03, 1.42s/it]
9605it [4:32:05, 1.38s/it]
9606it [4:32:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9607it [4:32:07, 1.38s/it]
9608it [4:32:09, 1.36s/it]
9609it [4:32:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9610it [4:32:12, 1.38s/it]
9611it [4:32:13, 1.35s/it]
9612it [4:32:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9613it [4:32:16, 1.39s/it]
9614it [4:32:17, 1.36s/it]
9615it [4:32:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9616it [4:32:20, 1.37s/it]
9617it [4:32:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9618it [4:32:23, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9619it [4:32:27, 2.33s/it]
9620it [4:32:29, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9621it [4:32:30, 1.89s/it]
9622it [4:32:31, 1.73s/it]
9623it [4:32:33, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9624it [4:32:36, 2.04s/it]
9625it [4:32:37, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9626it [4:32:39, 1.72s/it]
9627it [4:32:40, 1.59s/it]
9628it [4:32:41, 1.50s/it]
9629it [4:32:43, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9630it [4:32:44, 1.44s/it]
9631it [4:32:45, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9632it [4:32:47, 1.44s/it]
9633it [4:32:48, 1.39s/it]
9634it [4:32:49, 1.37s/it]
9635it [4:32:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9636it [4:32:52, 1.39s/it]
9637it [4:32:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9638it [4:32:55, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9639it [4:32:57, 1.52s/it]
9640it [4:32:58, 1.45s/it]
9641it [4:32:59, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9642it [4:33:01, 1.42s/it]
9643it [4:33:02, 1.38s/it]
9644it [4:33:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9645it [4:33:05, 1.38s/it]
9646it [4:33:06, 1.36s/it]
9647it [4:33:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9648it [4:33:09, 1.38s/it]
9649it [4:33:10, 1.36s/it]
9650it [4:33:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9651it [4:33:13, 1.39s/it]
9652it [4:33:14, 1.37s/it]
9653it [4:33:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9654it [4:33:17, 1.40s/it]
9655it [4:33:19, 1.37s/it]
9656it [4:33:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9657it [4:33:21, 1.37s/it]
9658it [4:33:23, 1.35s/it]
9659it [4:33:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9660it [4:33:25, 1.37s/it]
9661it [4:33:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9662it [4:33:30, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9663it [4:33:32, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9664it [4:33:33, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9665it [4:33:35, 1.69s/it]
9666it [4:33:36, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9667it [4:33:38, 1.56s/it]
9668it [4:33:39, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9669it [4:33:40, 1.51s/it]
9670it [4:33:42, 1.45s/it]
9671it [4:33:43, 1.41s/it]
9672it [4:33:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9673it [4:33:46, 1.41s/it]
9674it [4:33:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9675it [4:33:49, 1.43s/it]
9676it [4:33:50, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9677it [4:33:52, 1.53s/it]
9678it [4:33:53, 1.46s/it]
9679it [4:33:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9680it [4:33:56, 1.42s/it]
9681it [4:33:57, 1.39s/it]
9682it [4:33:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9683it [4:34:00, 1.43s/it]
9684it [4:34:02, 1.40s/it]
9685it [4:34:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9686it [4:34:04, 1.39s/it]
9687it [4:34:06, 1.37s/it]
9688it [4:34:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9689it [4:34:08, 1.38s/it]
9690it [4:34:10, 1.36s/it]
9691it [4:34:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9692it [4:34:12, 1.37s/it]
9693it [4:34:14, 1.35s/it]
9694it [4:34:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9695it [4:34:16, 1.35s/it]
9696it [4:34:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9697it [4:34:19, 1.37s/it]
9698it [4:34:20, 1.35s/it]
9699it [4:34:22, 1.34s/it]
9700it [4:34:23, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9701it [4:34:25, 1.37s/it]
9702it [4:34:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9703it [4:34:27, 1.38s/it]
9704it [4:34:29, 1.36s/it]
9705it [4:34:30, 1.35s/it]
9706it [4:34:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9707it [4:34:33, 1.39s/it]
9708it [4:34:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9709it [4:34:36, 1.41s/it]
9710it [4:34:37, 1.39s/it]
9711it [4:34:38, 1.36s/it]
9712it [4:34:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9713it [4:34:41, 1.38s/it]
9714it [4:34:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9715it [4:34:44, 1.38s/it]
9716it [4:34:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9717it [4:34:47, 1.40s/it]
9718it [4:34:48, 1.38s/it]
9719it [4:34:49, 1.36s/it]
9720it [4:34:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9721it [4:34:52, 1.37s/it]
9722it [4:34:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9723it [4:34:55, 1.51s/it]
9724it [4:34:56, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9725it [4:34:58, 1.46s/it]
9726it [4:34:59, 1.41s/it]
9727it [4:35:00, 1.38s/it]
9728it [4:35:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9729it [4:35:03, 1.39s/it]
9730it [4:35:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9731it [4:35:06, 1.40s/it]
9732it [4:35:07, 1.37s/it]
9733it [4:35:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9734it [4:35:10, 1.39s/it]
9735it [4:35:11, 1.37s/it]
9736it [4:35:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9737it [4:35:14, 1.39s/it]
9738it [4:35:16, 1.38s/it]
9739it [4:35:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9740it [4:35:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9741it [4:35:20, 1.41s/it]
9742it [4:35:21, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9743it [4:35:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9744it [4:35:25, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9745it [4:35:26, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9746it [4:35:28, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9747it [4:35:31, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9748it [4:35:33, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9749it [4:35:35, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9750it [4:35:36, 1.85s/it]
9751it [4:35:38, 1.69s/it]
9752it [4:35:39, 1.57s/it]
9753it [4:35:40, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9754it [4:35:42, 1.48s/it]
9755it [4:35:43, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9756it [4:35:45, 1.45s/it]
9757it [4:35:46, 1.42s/it]
9758it [4:35:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9759it [4:35:49, 1.41s/it]
9760it [4:35:50, 1.37s/it]
9761it [4:35:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9762it [4:35:53, 1.39s/it]
9763it [4:35:54, 1.36s/it]
9764it [4:35:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9765it [4:35:57, 1.37s/it]
9766it [4:35:58, 1.35s/it]
9767it [4:35:59, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9768it [4:36:01, 1.45s/it]
9769it [4:36:03, 1.41s/it]
9770it [4:36:04, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9771it [4:36:05, 1.42s/it]
9772it [4:36:07, 1.40s/it]
9773it [4:36:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9774it [4:36:09, 1.40s/it]
9775it [4:36:11, 1.38s/it]
9776it [4:36:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9777it [4:36:14, 1.41s/it]
9778it [4:36:15, 1.39s/it]
9779it [4:36:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9780it [4:36:18, 1.41s/it]
9781it [4:36:19, 1.40s/it]
9782it [4:36:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9783it [4:36:22, 1.41s/it]
9784it [4:36:23, 1.38s/it]
9785it [4:36:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9786it [4:36:26, 1.40s/it]
9787it [4:36:27, 1.37s/it]
9788it [4:36:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9789it [4:36:30, 1.41s/it]
9790it [4:36:32, 1.38s/it]
9791it [4:36:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9792it [4:36:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9793it [4:36:37, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9794it [4:36:38, 1.69s/it]
9795it [4:36:40, 1.58s/it]
9796it [4:36:41, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9797it [4:36:43, 1.53s/it]
9798it [4:36:44, 1.48s/it]
9799it [4:36:45, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9800it [4:36:47, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9801it [4:36:49, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9802it [4:36:52, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9803it [4:36:53, 1.90s/it]
9804it [4:36:55, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9805it [4:36:56, 1.65s/it]
9806it [4:36:58, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9807it [4:36:59, 1.53s/it]
9808it [4:37:00, 1.48s/it]
9809it [4:37:02, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9810it [4:37:05, 1.87s/it]
9811it [4:37:06, 1.70s/it]
9812it [4:37:07, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9813it [4:37:09, 1.58s/it]
9814it [4:37:10, 1.50s/it]
9815it [4:37:11, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9816it [4:37:13, 1.44s/it]
9817it [4:37:14, 1.40s/it]
9818it [4:37:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9819it [4:37:17, 1.41s/it]
9820it [4:37:18, 1.38s/it]
9821it [4:37:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9822it [4:37:21, 1.39s/it]
9823it [4:37:22, 1.37s/it]
9824it [4:37:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9825it [4:37:25, 1.39s/it]
9826it [4:37:27, 1.37s/it]
9827it [4:37:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9828it [4:37:29, 1.40s/it]
9829it [4:37:31, 1.39s/it]
9830it [4:37:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9831it [4:37:33, 1.38s/it]
9832it [4:37:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9833it [4:37:42, 3.25s/it]
9834it [4:37:44, 2.67s/it]
9835it [4:37:45, 2.26s/it]
9836it [4:37:46, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9837it [4:37:48, 1.80s/it]
9838it [4:37:49, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9839it [4:37:51, 1.73s/it]
9840it [4:37:52, 1.60s/it]
9841it [4:37:54, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9842it [4:37:55, 1.53s/it]
9843it [4:37:56, 1.47s/it]
9844it [4:37:58, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9845it [4:37:59, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9846it [4:38:01, 1.46s/it]
9847it [4:38:02, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9848it [4:38:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9849it [4:38:05, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9850it [4:38:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9851it [4:38:08, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9852it [4:38:11, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9853it [4:38:13, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9854it [4:38:15, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9855it [4:38:16, 1.82s/it]
9856it [4:38:18, 1.66s/it]
9857it [4:38:19, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9858it [4:38:21, 1.56s/it]
9859it [4:38:22, 1.48s/it]
9860it [4:38:23, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9861it [4:38:25, 1.43s/it]
9862it [4:38:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9863it [4:38:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9864it [4:38:29, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9865it [4:38:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9866it [4:38:32, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9867it [4:38:35, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9868it [4:38:37, 2.00s/it]
9869it [4:38:38, 1.82s/it]
9870it [4:38:40, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9871it [4:38:41, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9872it [4:38:43, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9873it [4:38:45, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9874it [4:38:46, 1.62s/it]
9875it [4:38:47, 1.53s/it]
9876it [4:38:49, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9877it [4:38:50, 1.47s/it]
9878it [4:38:51, 1.42s/it]
9879it [4:38:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9880it [4:38:54, 1.40s/it]
9881it [4:38:56, 1.38s/it]
9882it [4:38:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9883it [4:38:58, 1.38s/it]
9884it [4:39:00, 1.36s/it]
9885it [4:39:01, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9886it [4:39:02, 1.39s/it]
9887it [4:39:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9888it [4:39:06, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9889it [4:39:07, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9890it [4:39:08, 1.47s/it]
9891it [4:39:10, 1.43s/it]
9892it [4:39:11, 1.39s/it]
9893it [4:39:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9894it [4:39:14, 1.38s/it]
9895it [4:39:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9896it [4:39:17, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9897it [4:39:19, 1.57s/it]
9898it [4:39:20, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9899it [4:39:21, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9900it [4:39:23, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9901it [4:39:24, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9902it [4:39:26, 1.43s/it]
9903it [4:39:27, 1.39s/it]
9904it [4:39:28, 1.36s/it]
9905it [4:39:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9906it [4:39:31, 1.41s/it]
9907it [4:39:32, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9908it [4:39:34, 1.42s/it]
9909it [4:39:35, 1.38s/it]
9910it [4:39:36, 1.36s/it]
9911it [4:39:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9912it [4:39:39, 1.38s/it]
9913it [4:39:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9914it [4:39:43, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9915it [4:39:44, 1.52s/it]
9916it [4:39:45, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9917it [4:39:47, 1.46s/it]
9918it [4:39:48, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9919it [4:39:50, 1.42s/it]
9920it [4:39:51, 1.38s/it]
9921it [4:39:52, 1.35s/it]
9922it [4:39:53, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9923it [4:39:55, 1.36s/it]
9924it [4:39:56, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9925it [4:39:58, 1.39s/it]
9926it [4:39:59, 1.36s/it]
9927it [4:40:00, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9928it [4:40:02, 1.37s/it]
9929it [4:40:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9930it [4:40:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9931it [4:40:06, 1.39s/it]
9932it [4:40:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9933it [4:40:09, 1.39s/it]
9934it [4:40:10, 1.38s/it]
9935it [4:40:11, 1.35s/it]
9936it [4:40:12, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9937it [4:40:14, 1.37s/it]
9938it [4:40:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9939it [4:40:17, 1.37s/it]
9940it [4:40:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9941it [4:40:19, 1.38s/it]
9942it [4:40:21, 1.36s/it]
9943it [4:40:22, 1.36s/it]
9944it [4:40:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9945it [4:40:25, 1.38s/it]
9946it [4:40:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9947it [4:40:28, 1.38s/it]
9948it [4:40:29, 1.35s/it]
9949it [4:40:30, 1.33s/it]
9950it [4:40:31, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9951it [4:40:33, 1.36s/it]
9952it [4:40:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9953it [4:40:37, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9954it [4:40:39, 1.84s/it]
9955it [4:40:40, 1.68s/it]
9956it [4:40:42, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9957it [4:40:44, 1.72s/it]
9958it [4:40:45, 1.59s/it]
9959it [4:40:46, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9960it [4:40:48, 1.49s/it]
9961it [4:40:49, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9962it [4:40:51, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9963it [4:40:52, 1.50s/it]
9964it [4:40:54, 1.45s/it]
9965it [4:40:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9966it [4:40:56, 1.44s/it]
9967it [4:40:58, 1.39s/it]
9968it [4:40:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9969it [4:41:00, 1.39s/it]
9970it [4:41:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9971it [4:41:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9972it [4:41:05, 1.38s/it]
9973it [4:41:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9974it [4:41:07, 1.43s/it]
9975it [4:41:09, 1.40s/it]
9976it [4:41:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9977it [4:41:11, 1.38s/it]
9978it [4:41:13, 1.37s/it]
9979it [4:41:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9980it [4:41:16, 1.41s/it]
9981it [4:41:17, 1.38s/it]
9982it [4:41:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9983it [4:41:20, 1.37s/it]
9984it [4:41:21, 1.36s/it]
9985it [4:41:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9986it [4:41:28, 2.56s/it]
9987it [4:41:29, 2.18s/it]
9988it [4:41:30, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9989it [4:41:32, 1.78s/it]
9990it [4:41:33, 1.63s/it]
9991it [4:41:34, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9992it [4:41:36, 1.51s/it]
9993it [4:41:37, 1.45s/it]
9994it [4:41:38, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9995it [4:41:40, 1.40s/it]
9996it [4:41:41, 1.37s/it]
9997it [4:41:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9998it [4:41:44, 1.37s/it]
9999it [4:41:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10000it [4:41:47, 1.40s/it]
10001it [4:41:48, 1.37s/it]
10002it [4:41:49, 1.35s/it]
10003it [4:41:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10004it [4:41:52, 1.36s/it]
10005it [4:41:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10006it [4:41:55, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10007it [4:41:56, 1.45s/it]
10008it [4:41:58, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10009it [4:41:59, 1.43s/it]
10010it [4:42:01, 1.40s/it]
10011it [4:42:02, 1.38s/it]
10012it [4:42:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10013it [4:42:05, 1.38s/it]
10014it [4:42:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10015it [4:42:07, 1.39s/it]
10016it [4:42:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10017it [4:42:10, 1.38s/it]
10018it [4:42:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10019it [4:42:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10020it [4:42:14, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10021it [4:42:17, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10022it [4:42:20, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10023it [4:42:21, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10024it [4:42:23, 1.75s/it]
10025it [4:42:24, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10026it [4:42:25, 1.58s/it]
10027it [4:42:27, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10028it [4:42:28, 1.53s/it]
10029it [4:42:30, 1.46s/it]
10030it [4:42:31, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10031it [4:42:32, 1.43s/it]
10032it [4:42:34, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10033it [4:42:35, 1.42s/it]
10034it [4:42:36, 1.39s/it]
10035it [4:42:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10036it [4:42:39, 1.42s/it]
10037it [4:42:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10038it [4:42:42, 1.41s/it]
10039it [4:42:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10040it [4:42:45, 1.40s/it]
10041it [4:42:46, 1.38s/it]
10042it [4:42:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10043it [4:42:49, 1.40s/it]
10044it [4:42:50, 1.38s/it]
10045it [4:42:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10046it [4:42:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10047it [4:42:55, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10048it [4:42:56, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10049it [4:42:58, 1.49s/it]
10050it [4:42:59, 1.44s/it]
10051it [4:43:00, 1.39s/it]
10052it [4:43:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10053it [4:43:03, 1.39s/it]
10054it [4:43:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10055it [4:43:06, 1.38s/it]
10056it [4:43:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10057it [4:43:09, 1.40s/it]
10058it [4:43:10, 1.37s/it]
10059it [4:43:11, 1.36s/it]
10060it [4:43:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10061it [4:43:14, 1.37s/it]
10062it [4:43:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10063it [4:43:17, 1.40s/it]
10064it [4:43:18, 1.38s/it]
10065it [4:43:20, 1.36s/it]
10066it [4:43:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10067it [4:43:22, 1.39s/it]
10068it [4:43:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10069it [4:43:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10070it [4:43:27, 1.41s/it]
10071it [4:43:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10072it [4:43:29, 1.42s/it]
10073it [4:43:31, 1.39s/it]
10074it [4:43:32, 1.36s/it]
10075it [4:43:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10076it [4:43:35, 1.39s/it]
10077it [4:43:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10078it [4:43:38, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10079it [4:43:39, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10080it [4:43:41, 1.46s/it]
10081it [4:43:42, 1.42s/it]
10082it [4:43:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10083it [4:43:45, 1.41s/it]
10084it [4:43:46, 1.38s/it]
10085it [4:43:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10086it [4:43:49, 1.38s/it]
10087it [4:43:50, 1.37s/it]
10088it [4:43:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10089it [4:43:54, 1.56s/it]
10090it [4:43:55, 1.48s/it]
10091it [4:43:56, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10092it [4:43:58, 1.45s/it]
10093it [4:43:59, 1.41s/it]
10094it [4:44:00, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10095it [4:44:02, 1.41s/it]
10096it [4:44:03, 1.37s/it]
10097it [4:44:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10098it [4:44:06, 1.38s/it]
10099it [4:44:07, 1.36s/it]
10100it [4:44:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10101it [4:44:10, 1.38s/it]
10102it [4:44:11, 1.36s/it]
10103it [4:44:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10104it [4:44:14, 1.38s/it]
10105it [4:44:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10106it [4:44:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10107it [4:44:18, 1.40s/it]
10108it [4:44:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10109it [4:44:21, 1.41s/it]
10110it [4:44:22, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10111it [4:44:24, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10112it [4:44:25, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10113it [4:44:27, 1.42s/it]
10114it [4:44:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10115it [4:44:31, 1.75s/it]
10116it [4:44:32, 1.62s/it]
10117it [4:44:33, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10118it [4:44:35, 1.50s/it]
10119it [4:44:36, 1.44s/it]
10120it [4:44:37, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10121it [4:44:39, 1.43s/it]
10122it [4:44:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10123it [4:44:42, 1.42s/it]
10124it [4:44:43, 1.38s/it]
10125it [4:44:44, 1.36s/it]
10126it [4:44:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10127it [4:44:47, 1.37s/it]
10128it [4:44:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10129it [4:44:50, 1.39s/it]
10130it [4:44:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10131it [4:44:52, 1.40s/it]
10132it [4:44:54, 1.37s/it]
10133it [4:44:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10134it [4:44:56, 1.38s/it]
10135it [4:44:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10136it [4:44:59, 1.39s/it]
10137it [4:45:01, 1.37s/it]
10138it [4:45:02, 1.36s/it]
10139it [4:45:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10140it [4:45:05, 1.38s/it]
10141it [4:45:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10142it [4:45:07, 1.40s/it]
10143it [4:45:09, 1.38s/it]
10144it [4:45:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10145it [4:45:12, 1.41s/it]
10146it [4:45:13, 1.37s/it]
10147it [4:45:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10148it [4:45:16, 1.39s/it]
10149it [4:45:17, 1.37s/it]
10150it [4:45:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10151it [4:45:20, 1.36s/it]
10152it [4:45:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10153it [4:45:22, 1.37s/it]
10154it [4:45:24, 1.36s/it]
10155it [4:45:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10156it [4:45:27, 1.38s/it]
10157it [4:45:28, 1.35s/it]
10158it [4:45:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10159it [4:45:31, 1.39s/it]
10160it [4:45:32, 1.37s/it]
10161it [4:45:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10162it [4:45:35, 1.39s/it]
10163it [4:45:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10164it [4:45:38, 1.40s/it]
10165it [4:45:39, 1.38s/it]
10166it [4:45:40, 1.37s/it]
10167it [4:45:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10168it [4:45:43, 1.39s/it]
10169it [4:45:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10170it [4:45:46, 1.40s/it]
10171it [4:45:47, 1.38s/it]
10172it [4:45:48, 1.36s/it]
10173it [4:45:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10174it [4:45:51, 1.38s/it]
10175it [4:45:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10176it [4:45:54, 1.41s/it]
10177it [4:45:55, 1.37s/it]
10178it [4:45:57, 1.36s/it]
10179it [4:45:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10180it [4:46:00, 1.40s/it]
10181it [4:46:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10182it [4:46:03, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10183it [4:46:04, 1.55s/it]
10184it [4:46:06, 1.48s/it]
10185it [4:46:07, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10186it [4:46:09, 1.45s/it]
10187it [4:46:10, 1.41s/it]
10188it [4:46:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10189it [4:46:13, 1.41s/it]
10190it [4:46:14, 1.38s/it]
10191it [4:46:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10192it [4:46:17, 1.42s/it]
10193it [4:46:18, 1.38s/it]
10194it [4:46:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10195it [4:46:21, 1.39s/it]
10196it [4:46:22, 1.36s/it]
10197it [4:46:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10198it [4:46:25, 1.38s/it]
10199it [4:46:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10200it [4:46:28, 1.39s/it]
10201it [4:46:29, 1.36s/it]
10202it [4:46:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10203it [4:46:32, 1.37s/it]
10204it [4:46:33, 1.35s/it]
10205it [4:46:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10206it [4:46:36, 1.37s/it]
10207it [4:46:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10208it [4:46:39, 1.40s/it]
10209it [4:46:40, 1.39s/it]
10210it [4:46:41, 1.37s/it]
10211it [4:46:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10212it [4:46:44, 1.39s/it]
10213it [4:46:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10214it [4:46:47, 1.44s/it]
10215it [4:46:48, 1.41s/it]
10216it [4:46:50, 1.38s/it]
10217it [4:46:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10218it [4:46:53, 1.41s/it]
10219it [4:46:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10220it [4:46:55, 1.43s/it]
10221it [4:46:57, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10222it [4:46:58, 1.41s/it]
10223it [4:46:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10224it [4:47:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10225it [4:47:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10226it [4:47:04, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10227it [4:47:06, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10228it [4:47:10, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10229it [4:47:11, 2.00s/it]
10230it [4:47:12, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10231it [4:47:14, 1.69s/it]
10232it [4:47:15, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10233it [4:47:17, 1.55s/it]
10234it [4:47:18, 1.48s/it]
10235it [4:47:19, 1.44s/it]
10236it [4:47:21, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10237it [4:47:22, 1.43s/it]
10238it [4:47:23, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10239it [4:47:25, 1.45s/it]
10240it [4:47:26, 1.40s/it]
10241it [4:47:28, 1.38s/it]
10242it [4:47:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10243it [4:47:30, 1.40s/it]
10244it [4:47:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10245it [4:47:33, 1.42s/it]
10246it [4:47:35, 1.39s/it]
10247it [4:47:36, 1.35s/it]
10248it [4:47:37, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10249it [4:47:39, 1.37s/it]
10250it [4:47:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10251it [4:47:41, 1.41s/it]
10252it [4:47:43, 1.39s/it]
10253it [4:47:44, 1.37s/it]
10254it [4:47:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10255it [4:47:47, 1.39s/it]
10256it [4:47:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10257it [4:47:51, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10258it [4:47:52, 1.64s/it]
10259it [4:47:54, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10260it [4:47:55, 1.51s/it]
10261it [4:47:56, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10262it [4:47:59, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10263it [4:48:00, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10264it [4:48:07, 3.04s/it]
10265it [4:48:08, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10266it [4:48:09, 2.22s/it]
10267it [4:48:11, 1.95s/it]
10268it [4:48:12, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10269it [4:48:13, 1.66s/it]
10270it [4:48:15, 1.56s/it]
10271it [4:48:16, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10272it [4:48:18, 1.48s/it]
10273it [4:48:19, 1.42s/it]
10274it [4:48:20, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10275it [4:48:22, 1.40s/it]
10276it [4:48:23, 1.38s/it]
10277it [4:48:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10278it [4:48:26, 1.48s/it]
10279it [4:48:27, 1.42s/it]
10280it [4:48:29, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10281it [4:48:30, 1.44s/it]
10282it [4:48:31, 1.40s/it]
10283it [4:48:33, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10284it [4:48:34, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10285it [4:48:36, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10286it [4:48:37, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10287it [4:48:39, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10288it [4:48:40, 1.47s/it]
10289it [4:48:42, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10290it [4:48:43, 1.47s/it]
10291it [4:48:44, 1.43s/it]
10292it [4:48:46, 1.39s/it]
10293it [4:48:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10294it [4:48:49, 1.38s/it]
10295it [4:48:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10296it [4:48:51, 1.39s/it]
10297it [4:48:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10298it [4:48:54, 1.38s/it]
10299it [4:48:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10300it [4:48:57, 1.50s/it]
10301it [4:48:58, 1.45s/it]
10302it [4:49:00, 1.40s/it]
10303it [4:49:01, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10304it [4:49:02, 1.39s/it]
10305it [4:49:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10306it [4:49:06, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10307it [4:49:07, 1.57s/it]
10308it [4:49:09, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10309it [4:49:10, 1.49s/it]
10310it [4:49:12, 1.43s/it]
10311it [4:49:13, 1.39s/it]
10312it [4:49:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10313it [4:49:16, 1.39s/it]
10314it [4:49:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10315it [4:49:18, 1.39s/it]
10316it [4:49:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10317it [4:49:21, 1.40s/it]
10318it [4:49:22, 1.38s/it]
10319it [4:49:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10320it [4:49:25, 1.39s/it]
10321it [4:49:27, 1.36s/it]
10322it [4:49:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10323it [4:49:29, 1.40s/it]
10324it [4:49:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10325it [4:49:32, 1.39s/it]
10326it [4:49:33, 1.36s/it]
10327it [4:49:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10328it [4:49:39, 2.30s/it]
10329it [4:49:41, 2.01s/it]
10330it [4:49:42, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10331it [4:49:43, 1.72s/it]
10332it [4:49:45, 1.59s/it]
10333it [4:49:46, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10334it [4:49:48, 1.51s/it]
10335it [4:49:49, 1.44s/it]
10336it [4:49:50, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10337it [4:49:52, 1.41s/it]
10338it [4:49:53, 1.38s/it]
10339it [4:49:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10340it [4:49:56, 1.39s/it]
10341it [4:49:57, 1.36s/it]
10342it [4:49:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10343it [4:50:00, 1.38s/it]
10344it [4:50:01, 1.36s/it]
10345it [4:50:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10346it [4:50:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10347it [4:50:05, 1.38s/it]
10348it [4:50:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10349it [4:50:08, 1.40s/it]
10350it [4:50:09, 1.38s/it]
10351it [4:50:11, 1.36s/it]
10352it [4:50:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10353it [4:50:13, 1.36s/it]
10354it [4:50:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10355it [4:50:16, 1.38s/it]
10356it [4:50:17, 1.36s/it]
10357it [4:50:19, 1.34s/it]
10358it [4:50:20, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10359it [4:50:21, 1.35s/it]
10360it [4:50:23, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10361it [4:50:24, 1.37s/it]
10362it [4:50:25, 1.34s/it]
10363it [4:50:27, 1.33s/it]
10364it [4:50:28, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10365it [4:50:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10366it [4:50:33, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10367it [4:50:34, 1.81s/it]
10368it [4:50:36, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10369it [4:50:37, 1.60s/it]
10370it [4:50:38, 1.51s/it]
10371it [4:50:40, 1.44s/it]
10372it [4:50:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10373it [4:50:42, 1.41s/it]
10374it [4:50:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10375it [4:50:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10376it [4:50:47, 1.41s/it]
10377it [4:50:48, 1.38s/it]
10378it [4:50:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10379it [4:50:51, 1.40s/it]
10380it [4:50:52, 1.36s/it]
10381it [4:50:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10382it [4:50:55, 1.39s/it]
10383it [4:50:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10384it [4:50:57, 1.39s/it]
10385it [4:50:59, 1.36s/it]
10386it [4:51:00, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10387it [4:51:01, 1.36s/it]
10388it [4:51:03, 1.34s/it]
10389it [4:51:04, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10390it [4:51:05, 1.36s/it]
10391it [4:51:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10392it [4:51:08, 1.38s/it]
10393it [4:51:10, 1.37s/it]
10394it [4:51:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10395it [4:51:12, 1.39s/it]
10396it [4:51:14, 1.36s/it]
10397it [4:51:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10398it [4:51:16, 1.39s/it]
10399it [4:51:18, 1.36s/it]
10400it [4:51:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10401it [4:51:21, 1.40s/it]
10402it [4:51:22, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10403it [4:51:24, 1.44s/it]
10404it [4:51:25, 1.40s/it]
10405it [4:51:26, 1.37s/it]
10406it [4:51:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10407it [4:51:29, 1.39s/it]
10408it [4:51:30, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10409it [4:51:33, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10410it [4:51:35, 1.76s/it]
10411it [4:51:36, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10412it [4:51:38, 1.57s/it]
10413it [4:51:39, 1.49s/it]
10414it [4:51:40, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10415it [4:51:42, 1.43s/it]
10416it [4:51:43, 1.40s/it]
10417it [4:51:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10418it [4:51:46, 1.41s/it]
10419it [4:51:47, 1.38s/it]
10420it [4:51:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10421it [4:51:54, 2.60s/it]
10422it [4:51:55, 2.23s/it]
10423it [4:51:57, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10424it [4:51:58, 1.82s/it]
10425it [4:51:59, 1.67s/it]
10426it [4:52:01, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10427it [4:52:02, 1.54s/it]
10428it [4:52:03, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10429it [4:52:05, 1.45s/it]
10430it [4:52:06, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10431it [4:52:08, 1.44s/it]
10432it [4:52:09, 1.40s/it]
10433it [4:52:10, 1.37s/it]
10434it [4:52:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10435it [4:52:15, 1.92s/it]
10436it [4:52:16, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10437it [4:52:24, 3.54s/it]
10438it [4:52:25, 2.86s/it]
10439it [4:52:26, 2.40s/it]
10440it [4:52:28, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10441it [4:52:29, 1.89s/it]
10442it [4:52:31, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10443it [4:52:32, 1.65s/it]
10444it [4:52:33, 1.55s/it]
10445it [4:52:35, 1.48s/it]
10446it [4:52:36, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10447it [4:52:37, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10448it [4:52:40, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10449it [4:52:42, 1.78s/it]
10450it [4:52:43, 1.64s/it]
10451it [4:52:45, 1.54s/it]
10452it [4:52:46, 1.46s/it]
10453it [4:52:47, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10454it [4:52:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10455it [4:52:52, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10456it [4:52:53, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10457it [4:52:56, 2.28s/it]
10458it [4:52:58, 1.99s/it]
10459it [4:52:59, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10460it [4:53:01, 1.82s/it]
10461it [4:53:02, 1.66s/it]
10462it [4:53:04, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10463it [4:53:05, 1.54s/it]
10464it [4:53:06, 1.49s/it]
10465it [4:53:08, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10466it [4:53:09, 1.47s/it]
10467it [4:53:11, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10468it [4:53:12, 1.46s/it]
10469it [4:53:13, 1.41s/it]
10470it [4:53:15, 1.37s/it]
10471it [4:53:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10472it [4:53:18, 1.39s/it]
10473it [4:53:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10474it [4:53:21, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10475it [4:53:23, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10476it [4:53:25, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10477it [4:53:27, 1.82s/it]
10478it [4:53:28, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10479it [4:53:30, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10480it [4:53:33, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10481it [4:53:34, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10482it [4:53:36, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10483it [4:53:38, 2.05s/it]
10484it [4:53:40, 1.83s/it]
10485it [4:53:41, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10486it [4:53:43, 1.64s/it]
10487it [4:53:44, 1.54s/it]
10488it [4:53:45, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10489it [4:53:47, 1.46s/it]
10490it [4:53:48, 1.41s/it]
10491it [4:53:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10492it [4:53:51, 1.40s/it]
10493it [4:53:52, 1.38s/it]
10494it [4:53:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10495it [4:53:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10496it [4:53:56, 1.42s/it]
10497it [4:53:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10498it [4:54:01, 1.83s/it]
10499it [4:54:02, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10500it [4:54:09, 3.22s/it]
10501it [4:54:10, 2.66s/it]
10502it [4:54:11, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10503it [4:54:23, 5.17s/it]
10504it [4:54:25, 4.01s/it]
10505it [4:54:26, 3.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10506it [4:54:27, 2.67s/it]
10507it [4:54:29, 2.26s/it]
10508it [4:54:30, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10509it [4:54:31, 1.82s/it]
10510it [4:54:33, 1.67s/it]
10511it [4:54:34, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10512it [4:54:36, 1.53s/it]
10513it [4:54:37, 1.47s/it]
10514it [4:54:38, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10515it [4:54:40, 1.45s/it]
10516it [4:54:41, 1.41s/it]
10517it [4:54:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10518it [4:54:44, 1.42s/it]
10519it [4:54:45, 1.39s/it]
10520it [4:54:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10521it [4:54:48, 1.43s/it]
10522it [4:54:49, 1.38s/it]
10523it [4:54:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10524it [4:54:52, 1.39s/it]
10525it [4:54:53, 1.37s/it]
10526it [4:54:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10527it [4:54:56, 1.39s/it]
10528it [4:54:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10529it [4:54:59, 1.39s/it]
10530it [4:55:00, 1.36s/it]
10531it [4:55:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10532it [4:55:05, 1.86s/it]
10533it [4:55:06, 1.69s/it]
10534it [4:55:07, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10535it [4:55:09, 1.54s/it]
10536it [4:55:10, 1.47s/it]
10537it [4:55:11, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10538it [4:55:13, 1.44s/it]
10539it [4:55:14, 1.40s/it]
10540it [4:55:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10541it [4:55:17, 1.40s/it]
10542it [4:55:18, 1.38s/it]
10543it [4:55:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10544it [4:55:21, 1.39s/it]
10545it [4:55:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10546it [4:55:24, 1.41s/it]
10547it [4:55:25, 1.38s/it]
10548it [4:55:26, 1.35s/it]
10549it [4:55:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10550it [4:55:29, 1.39s/it]
10551it [4:55:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10552it [4:55:32, 1.40s/it]
10553it [4:55:33, 1.37s/it]
10554it [4:55:35, 1.35s/it]
10555it [4:55:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10556it [4:55:37, 1.38s/it]
10557it [4:55:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10558it [4:55:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10559it [4:55:42, 1.40s/it]
10560it [4:55:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10561it [4:55:44, 1.40s/it]
10562it [4:55:46, 1.37s/it]
10563it [4:55:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10564it [4:55:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10565it [4:55:50, 1.39s/it]
10566it [4:55:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10567it [4:55:53, 1.40s/it]
10568it [4:55:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10569it [4:55:55, 1.40s/it]
10570it [4:55:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10571it [4:55:58, 1.40s/it]
10572it [4:55:59, 1.38s/it]
10573it [4:56:01, 1.37s/it]
10574it [4:56:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10575it [4:56:04, 1.37s/it]
10576it [4:56:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10577it [4:56:06, 1.39s/it]
10578it [4:56:08, 1.37s/it]
10579it [4:56:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10580it [4:56:13, 2.30s/it]
10581it [4:56:15, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10582it [4:56:21, 3.25s/it]
10583it [4:56:22, 2.68s/it]
10584it [4:56:24, 2.28s/it]
10585it [4:56:25, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10586it [4:56:26, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10587it [4:56:29, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10588it [4:56:30, 1.85s/it]
10589it [4:56:32, 1.70s/it]
10590it [4:56:33, 1.58s/it]
10591it [4:56:34, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10592it [4:56:36, 1.48s/it]
10593it [4:56:37, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10594it [4:56:38, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10595it [4:56:40, 1.44s/it]
10596it [4:56:41, 1.41s/it]
10597it [4:56:43, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10598it [4:56:44, 1.40s/it]
10599it [4:56:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10600it [4:56:47, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10601it [4:56:49, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10602it [4:56:50, 1.49s/it]
10603it [4:56:51, 1.44s/it]
10604it [4:56:53, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10605it [4:56:54, 1.44s/it]
10606it [4:56:56, 1.41s/it]
10607it [4:56:57, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10608it [4:56:58, 1.41s/it]
10609it [4:57:00, 1.38s/it]
10610it [4:57:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10611it [4:57:02, 1.37s/it]
10612it [4:57:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10613it [4:57:05, 1.39s/it]
10614it [4:57:07, 1.36s/it]
10615it [4:57:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10616it [4:57:09, 1.37s/it]
10617it [4:57:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10618it [4:57:12, 1.42s/it]
10619it [4:57:14, 1.39s/it]
10620it [4:57:15, 1.36s/it]
10621it [4:57:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10622it [4:57:18, 1.36s/it]
10623it [4:57:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10624it [4:57:20, 1.40s/it]
10625it [4:57:22, 1.37s/it]
10626it [4:57:23, 1.36s/it]
10627it [4:57:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10628it [4:57:26, 1.37s/it]
10629it [4:57:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10630it [4:57:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10631it [4:57:30, 1.41s/it]
10632it [4:57:31, 1.39s/it]
10633it [4:57:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10634it [4:57:34, 1.39s/it]
10635it [4:57:35, 1.37s/it]
10636it [4:57:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10637it [4:57:38, 1.43s/it]
10638it [4:57:40, 1.40s/it]
10639it [4:57:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10640it [4:57:42, 1.41s/it]
10641it [4:57:44, 1.38s/it]
10642it [4:57:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10643it [4:57:47, 1.40s/it]
10644it [4:57:48, 1.37s/it]
10645it [4:57:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10646it [4:57:51, 1.38s/it]
10647it [4:57:52, 1.36s/it]
10648it [4:57:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10649it [4:57:56, 1.79s/it]
10650it [4:57:57, 1.65s/it]
10651it [4:57:59, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10652it [4:58:01, 1.62s/it]
10653it [4:58:02, 1.53s/it]
10654it [4:58:03, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10655it [4:58:05, 1.46s/it]
10656it [4:58:06, 1.42s/it]
10657it [4:58:07, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10658it [4:58:09, 1.41s/it]
10659it [4:58:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10660it [4:58:11, 1.41s/it]
10661it [4:58:13, 1.39s/it]
10662it [4:58:14, 1.37s/it]
10663it [4:58:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10664it [4:58:17, 1.39s/it]
10665it [4:58:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10666it [4:58:20, 1.39s/it]
10667it [4:58:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10668it [4:58:23, 1.43s/it]
10669it [4:58:24, 1.41s/it]
10670it [4:58:25, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10671it [4:58:28, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10672it [4:58:29, 1.59s/it]
10673it [4:58:30, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10674it [4:58:32, 1.49s/it]
10675it [4:58:33, 1.44s/it]
10676it [4:58:34, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10677it [4:58:36, 1.40s/it]
10678it [4:58:37, 1.39s/it]
10679it [4:58:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10680it [4:58:40, 1.41s/it]
10681it [4:58:41, 1.39s/it]
10682it [4:58:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10683it [4:58:44, 1.41s/it]
10684it [4:58:46, 1.40s/it]
10685it [4:58:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10686it [4:58:48, 1.43s/it]
10687it [4:58:50, 1.40s/it]
10688it [4:58:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10689it [4:58:53, 1.50s/it]
10690it [4:58:54, 1.44s/it]
10691it [4:58:55, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10692it [4:58:57, 1.41s/it]
10693it [4:58:58, 1.38s/it]
10694it [4:59:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10695it [4:59:01, 1.39s/it]
10696it [4:59:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10697it [4:59:04, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10698it [4:59:05, 1.40s/it]
10699it [4:59:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10700it [4:59:08, 1.39s/it]
10701it [4:59:09, 1.36s/it]
10702it [4:59:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10703it [4:59:12, 1.38s/it]
10704it [4:59:13, 1.36s/it]
10705it [4:59:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10706it [4:59:16, 1.37s/it]
10707it [4:59:17, 1.37s/it]
10708it [4:59:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10709it [4:59:20, 1.38s/it]
10710it [4:59:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10711it [4:59:23, 1.38s/it]
10712it [4:59:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10713it [4:59:26, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10714it [4:59:27, 1.40s/it]
10715it [4:59:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10716it [4:59:30, 1.43s/it]
10717it [4:59:31, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10718it [4:59:33, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10719it [4:59:34, 1.41s/it]
10720it [4:59:35, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10721it [4:59:37, 1.40s/it]
10722it [4:59:38, 1.37s/it]
10723it [4:59:39, 1.35s/it]
10724it [4:59:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10725it [4:59:42, 1.37s/it]
10726it [4:59:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10727it [4:59:45, 1.40s/it]
10728it [4:59:46, 1.37s/it]
10729it [4:59:48, 1.35s/it]
10730it [4:59:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10731it [4:59:50, 1.39s/it]
10732it [4:59:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10733it [4:59:53, 1.39s/it]
10734it [4:59:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10735it [4:59:56, 1.39s/it]
10736it [4:59:57, 1.37s/it]
10737it [4:59:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10738it [5:00:00, 1.43s/it]
10739it [5:00:01, 1.40s/it]
10740it [5:00:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10741it [5:00:04, 1.41s/it]
10742it [5:00:06, 1.38s/it]
10743it [5:00:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10744it [5:00:08, 1.38s/it]
10745it [5:00:10, 1.35s/it]
10746it [5:00:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10747it [5:00:12, 1.38s/it]
10748it [5:00:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10749it [5:00:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10750it [5:00:17, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10751it [5:00:18, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10752it [5:00:20, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10753it [5:00:22, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10754it [5:00:23, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10755it [5:00:27, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10756it [5:00:28, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10757it [5:00:30, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10758it [5:00:31, 1.73s/it]
10759it [5:00:33, 1.61s/it]
10760it [5:00:34, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10761it [5:00:36, 1.51s/it]
10762it [5:00:37, 1.45s/it]
10763it [5:00:38, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10764it [5:00:40, 1.41s/it]
10765it [5:00:41, 1.38s/it]
10766it [5:00:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10767it [5:00:44, 1.39s/it]
10768it [5:00:45, 1.36s/it]
10769it [5:00:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10770it [5:00:48, 1.38s/it]
10771it [5:00:49, 1.36s/it]
10772it [5:00:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10773it [5:00:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10774it [5:00:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10775it [5:00:55, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10776it [5:00:57, 1.62s/it]
10777it [5:00:58, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10778it [5:01:00, 1.53s/it]
10779it [5:01:01, 1.47s/it]
10780it [5:01:02, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10781it [5:01:04, 1.42s/it]
10782it [5:01:05, 1.39s/it]
10783it [5:01:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10784it [5:01:08, 1.40s/it]
10785it [5:01:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10786it [5:01:11, 1.40s/it]
10787it [5:01:12, 1.38s/it]
10788it [5:01:13, 1.36s/it]
10789it [5:01:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10790it [5:01:16, 1.37s/it]
10791it [5:01:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10792it [5:01:19, 1.40s/it]
10793it [5:01:20, 1.38s/it]
10794it [5:01:22, 1.37s/it]
10795it [5:01:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10796it [5:01:24, 1.38s/it]
10797it [5:01:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10798it [5:01:27, 1.40s/it]
10799it [5:01:28, 1.37s/it]
10800it [5:01:30, 1.35s/it]
10801it [5:01:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10802it [5:01:33, 1.47s/it]
10803it [5:01:34, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10804it [5:01:36, 1.45s/it]
10805it [5:01:37, 1.42s/it]
10806it [5:01:38, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10807it [5:01:40, 1.43s/it]
10808it [5:01:41, 1.40s/it]
10809it [5:01:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10810it [5:01:44, 1.41s/it]
10811it [5:01:45, 1.38s/it]
10812it [5:01:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10813it [5:01:48, 1.40s/it]
10814it [5:01:49, 1.37s/it]
10815it [5:01:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10816it [5:01:52, 1.39s/it]
10817it [5:01:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10818it [5:01:56, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10819it [5:01:58, 1.71s/it]
10820it [5:01:59, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10821it [5:02:01, 1.55s/it]
10822it [5:02:02, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10823it [5:02:06, 2.35s/it]
10824it [5:02:08, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10825it [5:02:10, 2.12s/it]
10826it [5:02:11, 1.88s/it]
10827it [5:02:13, 1.71s/it]
10828it [5:02:14, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10829it [5:02:15, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10830it [5:02:20, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10831it [5:02:22, 2.20s/it]
10832it [5:02:23, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10833it [5:02:24, 1.79s/it]
10834it [5:02:26, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10835it [5:02:27, 1.62s/it]
10836it [5:02:29, 1.54s/it]
10837it [5:02:30, 1.47s/it]
10838it [5:02:31, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10839it [5:02:33, 1.45s/it]
10840it [5:02:34, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10841it [5:02:36, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10842it [5:02:38, 1.61s/it]
10843it [5:02:39, 1.52s/it]
10844it [5:02:40, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10845it [5:02:42, 1.44s/it]
10846it [5:02:43, 1.40s/it]
10847it [5:02:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10848it [5:02:46, 1.39s/it]
10849it [5:02:47, 1.37s/it]
10850it [5:02:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10851it [5:02:50, 1.39s/it]
10852it [5:02:51, 1.37s/it]
10853it [5:02:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10854it [5:02:54, 1.39s/it]
10855it [5:02:55, 1.38s/it]
10856it [5:02:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10857it [5:02:58, 1.42s/it]
10858it [5:03:00, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10859it [5:03:01, 1.41s/it]
10860it [5:03:02, 1.39s/it]
10861it [5:03:04, 1.37s/it]
10862it [5:03:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10863it [5:03:06, 1.39s/it]
10864it [5:03:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10865it [5:03:09, 1.40s/it]
10866it [5:03:11, 1.39s/it]
10867it [5:03:12, 1.36s/it]
10868it [5:03:13, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10869it [5:03:15, 1.39s/it]
10870it [5:03:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10871it [5:03:18, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10872it [5:03:19, 1.50s/it]
10873it [5:03:21, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10874it [5:03:22, 1.46s/it]
10875it [5:03:24, 1.42s/it]
10876it [5:03:25, 1.39s/it]
10877it [5:03:26, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10878it [5:03:28, 1.39s/it]
10879it [5:03:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10880it [5:03:30, 1.42s/it]
10881it [5:03:32, 1.39s/it]
10882it [5:03:33, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10883it [5:03:35, 1.41s/it]
10884it [5:03:36, 1.39s/it]
10885it [5:03:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10886it [5:03:39, 1.38s/it]
10887it [5:03:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10888it [5:03:42, 1.40s/it]
10889it [5:03:43, 1.38s/it]
10890it [5:03:44, 1.37s/it]
10891it [5:03:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10892it [5:03:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10893it [5:03:51, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10894it [5:03:52, 1.88s/it]
10895it [5:03:53, 1.71s/it]
10896it [5:03:55, 1.59s/it]
10897it [5:03:56, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10898it [5:03:57, 1.48s/it]
10899it [5:03:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10900it [5:04:00, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10901it [5:04:02, 1.44s/it]
10902it [5:04:03, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10903it [5:04:04, 1.42s/it]
10904it [5:04:06, 1.39s/it]
10905it [5:04:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10906it [5:04:08, 1.38s/it]
10907it [5:04:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10908it [5:04:11, 1.39s/it]
10909it [5:04:13, 1.37s/it]
10910it [5:04:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10911it [5:04:15, 1.39s/it]
10912it [5:04:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10913it [5:04:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10914it [5:04:19, 1.39s/it]
10915it [5:04:21, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10916it [5:04:22, 1.40s/it]
10917it [5:04:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10918it [5:04:25, 1.44s/it]
10919it [5:04:27, 1.40s/it]
10920it [5:04:28, 1.37s/it]
10921it [5:04:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10922it [5:04:31, 1.39s/it]
10923it [5:04:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10924it [5:04:34, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10925it [5:04:35, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10926it [5:04:39, 2.30s/it]
10927it [5:04:41, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10928it [5:04:42, 1.87s/it]
10929it [5:04:44, 1.71s/it]
10930it [5:04:45, 1.60s/it]
10931it [5:04:46, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10932it [5:04:54, 3.37s/it]
10933it [5:04:55, 2.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10934it [5:05:00, 3.27s/it]
10935it [5:05:01, 2.69s/it]
10936it [5:05:02, 2.29s/it]
10937it [5:05:04, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10938it [5:05:05, 1.86s/it]
10939it [5:05:07, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10940it [5:05:08, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10941it [5:05:10, 1.64s/it]
10942it [5:05:11, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10943it [5:05:13, 1.54s/it]
10944it [5:05:14, 1.49s/it]
10945it [5:05:15, 1.44s/it]
10946it [5:05:17, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10947it [5:05:18, 1.41s/it]
10948it [5:05:19, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10949it [5:05:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10950it [5:05:22, 1.41s/it]
10951it [5:05:24, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10952it [5:05:27, 2.10s/it]
10953it [5:05:29, 1.86s/it]
10954it [5:05:30, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10955it [5:05:31, 1.62s/it]
10956it [5:05:33, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10957it [5:05:34, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10958it [5:05:36, 1.50s/it]
10959it [5:05:37, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10960it [5:05:38, 1.45s/it]
10961it [5:05:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10962it [5:05:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10963it [5:05:43, 1.41s/it]
10964it [5:05:44, 1.38s/it]
10965it [5:05:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10966it [5:05:47, 1.41s/it]
10967it [5:05:48, 1.38s/it]
10968it [5:05:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10969it [5:05:51, 1.38s/it]
10970it [5:05:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10971it [5:05:54, 1.40s/it]
10972it [5:05:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10973it [5:05:56, 1.39s/it]
10974it [5:05:58, 1.36s/it]
10975it [5:05:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10976it [5:06:00, 1.38s/it]
10977it [5:06:02, 1.36s/it]
10978it [5:06:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10979it [5:06:04, 1.38s/it]
10980it [5:06:06, 1.36s/it]
10981it [5:06:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10982it [5:06:09, 1.39s/it]
10983it [5:06:10, 1.38s/it]
10984it [5:06:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10985it [5:06:13, 1.50s/it]
10986it [5:06:14, 1.44s/it]
10987it [5:06:16, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10988it [5:06:17, 1.41s/it]
10989it [5:06:18, 1.38s/it]
10990it [5:06:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10991it [5:06:21, 1.39s/it]
10992it [5:06:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10993it [5:06:24, 1.41s/it]
10994it [5:06:25, 1.39s/it]
10995it [5:06:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10996it [5:06:28, 1.39s/it]
10997it [5:06:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10998it [5:06:32, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10999it [5:06:33, 1.58s/it]
11000it [5:06:35, 1.52s/it]
11001it [5:06:36, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11002it [5:06:37, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11003it [5:06:40, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11004it [5:06:42, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11005it [5:06:43, 1.78s/it]
11006it [5:06:45, 1.64s/it]
11007it [5:06:46, 1.54s/it]
11008it [5:06:47, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11009it [5:06:49, 1.46s/it]
11010it [5:06:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11011it [5:06:52, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11012it [5:06:54, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11013it [5:06:55, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11014it [5:06:57, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11015it [5:06:58, 1.51s/it]
11016it [5:06:59, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11017it [5:07:01, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11018it [5:07:02, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11019it [5:07:04, 1.45s/it]
11020it [5:07:05, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11021it [5:07:07, 1.47s/it]
11022it [5:07:08, 1.43s/it]
11023it [5:07:09, 1.40s/it]
11024it [5:07:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11025it [5:07:12, 1.38s/it]
11026it [5:07:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11027it [5:07:15, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11028it [5:07:17, 1.46s/it]
11029it [5:07:18, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11030it [5:07:19, 1.43s/it]
11031it [5:07:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11032it [5:07:22, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11033it [5:07:26, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11034it [5:07:28, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11035it [5:07:29, 1.93s/it]
11036it [5:07:31, 1.74s/it]
11037it [5:07:32, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11038it [5:07:34, 1.56s/it]
11039it [5:07:35, 1.48s/it]
11040it [5:07:36, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11041it [5:07:38, 1.44s/it]
11042it [5:07:39, 1.40s/it]
11043it [5:07:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11044it [5:07:42, 1.41s/it]
11045it [5:07:43, 1.39s/it]
11046it [5:07:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11047it [5:07:46, 1.41s/it]
11048it [5:07:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11049it [5:07:49, 1.40s/it]
11050it [5:07:50, 1.37s/it]
11051it [5:07:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11052it [5:07:53, 1.40s/it]
11053it [5:07:54, 1.38s/it]
11054it [5:07:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11055it [5:07:57, 1.39s/it]
11056it [5:07:58, 1.36s/it]
11057it [5:07:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11058it [5:08:01, 1.47s/it]
11059it [5:08:03, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11060it [5:08:04, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11061it [5:08:05, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11062it [5:08:09, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11063it [5:08:11, 2.16s/it]
11064it [5:08:13, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11065it [5:08:14, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11066it [5:08:16, 1.69s/it]
11067it [5:08:17, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11068it [5:08:18, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11069it [5:08:20, 1.50s/it]
11070it [5:08:21, 1.44s/it]
11071it [5:08:22, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11072it [5:08:24, 1.42s/it]
11073it [5:08:25, 1.37s/it]
11074it [5:08:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11075it [5:08:28, 1.39s/it]
11076it [5:08:29, 1.37s/it]
11077it [5:08:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11078it [5:08:32, 1.41s/it]
11079it [5:08:33, 1.38s/it]
11080it [5:08:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11081it [5:08:36, 1.38s/it]
11082it [5:08:37, 1.36s/it]
11083it [5:08:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11084it [5:08:40, 1.40s/it]
11085it [5:08:42, 1.38s/it]
11086it [5:08:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11087it [5:08:44, 1.39s/it]
11088it [5:08:46, 1.36s/it]
11089it [5:08:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11090it [5:08:48, 1.37s/it]
11091it [5:08:50, 1.35s/it]
11092it [5:08:51, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11093it [5:08:53, 1.38s/it]
11094it [5:08:54, 1.36s/it]
11095it [5:08:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11096it [5:08:57, 1.37s/it]
11097it [5:08:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11098it [5:08:59, 1.38s/it]
11099it [5:09:01, 1.36s/it]
11100it [5:09:02, 1.34s/it]
11101it [5:09:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11102it [5:09:05, 1.39s/it]
11103it [5:09:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11104it [5:09:08, 1.43s/it]
11105it [5:09:09, 1.39s/it]
11106it [5:09:10, 1.37s/it]
11107it [5:09:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11108it [5:09:13, 1.37s/it]
11109it [5:09:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11110it [5:09:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11111it [5:09:17, 1.39s/it]
11112it [5:09:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11113it [5:09:20, 1.42s/it]
11114it [5:09:21, 1.39s/it]
11115it [5:09:23, 1.37s/it]
11116it [5:09:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11117it [5:09:26, 1.40s/it]
11118it [5:09:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11119it [5:09:28, 1.39s/it]
11120it [5:09:30, 1.38s/it]
11121it [5:09:31, 1.36s/it]
11122it [5:09:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11123it [5:09:34, 1.38s/it]
11124it [5:09:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11125it [5:09:36, 1.40s/it]
11126it [5:09:38, 1.37s/it]
11127it [5:09:39, 1.35s/it]
11128it [5:09:40, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11129it [5:09:42, 1.36s/it]
11130it [5:09:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11131it [5:09:45, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11132it [5:09:46, 1.48s/it]
11133it [5:09:48, 1.43s/it]
11134it [5:09:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11135it [5:09:51, 1.51s/it]
11136it [5:09:52, 1.45s/it]
11137it [5:09:53, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11138it [5:09:55, 1.45s/it]
11139it [5:09:56, 1.41s/it]
11140it [5:09:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11141it [5:09:59, 1.41s/it]
11142it [5:10:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11143it [5:10:02, 1.40s/it]
11144it [5:10:03, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11145it [5:10:05, 1.41s/it]
11146it [5:10:06, 1.38s/it]
11147it [5:10:07, 1.37s/it]
11148it [5:10:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11149it [5:10:10, 1.39s/it]
11150it [5:10:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11151it [5:10:13, 1.41s/it]
11152it [5:10:14, 1.37s/it]
11153it [5:10:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11154it [5:10:17, 1.40s/it]
11155it [5:10:18, 1.37s/it]
11156it [5:10:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11157it [5:10:21, 1.41s/it]
11158it [5:10:22, 1.38s/it]
11159it [5:10:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11160it [5:10:25, 1.39s/it]
11161it [5:10:27, 1.36s/it]
11162it [5:10:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11163it [5:10:29, 1.40s/it]
11164it [5:10:31, 1.38s/it]
11165it [5:10:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11166it [5:10:34, 1.40s/it]
11167it [5:10:35, 1.38s/it]
11168it [5:10:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11169it [5:10:38, 1.40s/it]
11170it [5:10:39, 1.39s/it]
11171it [5:10:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11172it [5:10:42, 1.39s/it]
11173it [5:10:43, 1.37s/it]
11174it [5:10:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11175it [5:10:46, 1.43s/it]
11176it [5:10:47, 1.40s/it]
11177it [5:10:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11178it [5:10:50, 1.41s/it]
11179it [5:10:51, 1.38s/it]
11180it [5:10:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11181it [5:10:54, 1.40s/it]
11182it [5:10:56, 1.39s/it]
11183it [5:10:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11184it [5:10:58, 1.40s/it]
11185it [5:11:00, 1.38s/it]
11186it [5:11:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11187it [5:11:03, 1.41s/it]
11188it [5:11:04, 1.38s/it]
11189it [5:11:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11190it [5:11:07, 1.39s/it]
11191it [5:11:08, 1.37s/it]
11192it [5:11:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11193it [5:11:11, 1.38s/it]
11194it [5:11:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11195it [5:11:14, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11196it [5:11:15, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11197it [5:11:17, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11198it [5:11:19, 1.57s/it]
11199it [5:11:20, 1.49s/it]
11200it [5:11:21, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11201it [5:11:23, 1.44s/it]
11202it [5:11:24, 1.40s/it]
11203it [5:11:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11204it [5:11:27, 1.39s/it]
11205it [5:11:28, 1.36s/it]
11206it [5:11:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11207it [5:11:31, 1.38s/it]
11208it [5:11:32, 1.36s/it]
11209it [5:11:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11210it [5:11:35, 1.39s/it]
11211it [5:11:36, 1.37s/it]
11212it [5:11:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11213it [5:11:39, 1.40s/it]
11214it [5:11:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11215it [5:11:42, 1.39s/it]
11216it [5:11:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11217it [5:11:45, 1.40s/it]
11218it [5:11:46, 1.37s/it]
11219it [5:11:47, 1.36s/it]
11220it [5:11:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11221it [5:11:50, 1.36s/it]
11222it [5:11:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11223it [5:11:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11224it [5:11:54, 1.47s/it]
11225it [5:11:56, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11226it [5:11:57, 1.43s/it]
11227it [5:11:58, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11228it [5:12:00, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11229it [5:12:01, 1.41s/it]
11230it [5:12:03, 1.39s/it]
11231it [5:12:04, 1.37s/it]
11232it [5:12:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11233it [5:12:07, 1.36s/it]
11234it [5:12:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11235it [5:12:09, 1.39s/it]
11236it [5:12:11, 1.37s/it]
11237it [5:12:12, 1.35s/it]
11238it [5:12:13, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11239it [5:12:15, 1.36s/it]
11240it [5:12:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11241it [5:12:19, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11242it [5:12:20, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11243it [5:12:21, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11244it [5:12:23, 1.53s/it]
11245it [5:12:24, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11246it [5:12:26, 1.48s/it]
11247it [5:12:27, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11248it [5:12:28, 1.43s/it]
11249it [5:12:30, 1.39s/it]
11250it [5:12:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11251it [5:12:32, 1.40s/it]
11252it [5:12:34, 1.38s/it]
11253it [5:12:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11254it [5:12:37, 1.39s/it]
11255it [5:12:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11256it [5:12:39, 1.41s/it]
11257it [5:12:41, 1.39s/it]
11258it [5:12:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11259it [5:12:44, 1.40s/it]
11260it [5:12:45, 1.38s/it]
11261it [5:12:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11262it [5:12:48, 1.39s/it]
11263it [5:12:49, 1.37s/it]
11264it [5:12:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11265it [5:12:52, 1.39s/it]
11266it [5:12:53, 1.37s/it]
11267it [5:12:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11268it [5:12:57, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11269it [5:12:59, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11270it [5:13:01, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11271it [5:13:03, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11272it [5:13:05, 1.79s/it]
11273it [5:13:06, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11274it [5:13:07, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11275it [5:13:09, 1.56s/it]
11276it [5:13:10, 1.49s/it]
11277it [5:13:11, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11278it [5:13:13, 1.43s/it]
11279it [5:13:14, 1.39s/it]
11280it [5:13:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11281it [5:13:17, 1.39s/it]
11282it [5:13:18, 1.36s/it]
11283it [5:13:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11284it [5:13:21, 1.36s/it]
11285it [5:13:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11286it [5:13:24, 1.38s/it]
11287it [5:13:25, 1.36s/it]
11288it [5:13:26, 1.34s/it]
11289it [5:13:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11290it [5:13:29, 1.38s/it]
11291it [5:13:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11292it [5:13:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11293it [5:13:33, 1.37s/it]
11294it [5:13:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11295it [5:13:36, 1.37s/it]
11296it [5:13:37, 1.35s/it]
11297it [5:13:38, 1.33s/it]
11298it [5:13:40, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11299it [5:13:42, 1.49s/it]
11300it [5:13:43, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11301it [5:13:44, 1.44s/it]
11302it [5:13:46, 1.41s/it]
11303it [5:13:47, 1.38s/it]
11304it [5:13:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11305it [5:13:50, 1.38s/it]
11306it [5:13:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11307it [5:13:53, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11308it [5:13:54, 1.43s/it]
11309it [5:13:55, 1.40s/it]
11310it [5:13:57, 1.38s/it]
11311it [5:13:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11312it [5:13:59, 1.37s/it]
11313it [5:14:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11314it [5:14:02, 1.41s/it]
11315it [5:14:04, 1.37s/it]
11316it [5:14:05, 1.35s/it]
11317it [5:14:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11318it [5:14:08, 1.36s/it]
11319it [5:14:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11320it [5:14:12, 1.77s/it]
11321it [5:14:13, 1.64s/it]
11322it [5:14:14, 1.54s/it]
11323it [5:14:16, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11324it [5:14:17, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11325it [5:14:18, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11326it [5:14:20, 1.49s/it]
11327it [5:14:21, 1.44s/it]
11328it [5:14:23, 1.40s/it]
11329it [5:14:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11330it [5:14:25, 1.40s/it]
11331it [5:14:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11332it [5:14:29, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11333it [5:14:30, 1.46s/it]
11334it [5:14:31, 1.42s/it]
11335it [5:14:33, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11336it [5:14:34, 1.43s/it]
11337it [5:14:35, 1.40s/it]
11338it [5:14:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11339it [5:14:38, 1.40s/it]
11340it [5:14:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11341it [5:14:41, 1.42s/it]
11342it [5:14:42, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11343it [5:14:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11344it [5:14:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11345it [5:14:47, 1.51s/it]
11346it [5:14:48, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11347it [5:14:50, 1.49s/it]
11348it [5:14:51, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11349it [5:14:53, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11350it [5:14:54, 1.44s/it]
11351it [5:14:55, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11352it [5:14:57, 1.42s/it]
11353it [5:14:58, 1.39s/it]
11354it [5:14:59, 1.37s/it]
11355it [5:15:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11356it [5:15:02, 1.39s/it]
11357it [5:15:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11358it [5:15:05, 1.39s/it]
11359it [5:15:06, 1.36s/it]
11360it [5:15:08, 1.35s/it]
11361it [5:15:09, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11362it [5:15:10, 1.36s/it]
11363it [5:15:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11364it [5:15:13, 1.38s/it]
11365it [5:15:14, 1.35s/it]
11366it [5:15:16, 1.34s/it]
11367it [5:15:17, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11368it [5:15:18, 1.37s/it]
11369it [5:15:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11370it [5:15:21, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11371it [5:15:23, 1.47s/it]
11372it [5:15:24, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11373it [5:15:26, 1.45s/it]
11374it [5:15:27, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11375it [5:15:29, 1.42s/it]
11376it [5:15:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11377it [5:15:31, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11378it [5:15:33, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11379it [5:15:35, 1.53s/it]
11380it [5:15:36, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11381it [5:15:38, 1.49s/it]
11382it [5:15:39, 1.44s/it]
11383it [5:15:40, 1.41s/it]
11384it [5:15:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11385it [5:15:43, 1.41s/it]
11386it [5:15:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11387it [5:15:46, 1.42s/it]
11388it [5:15:47, 1.40s/it]
11389it [5:15:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11390it [5:15:53, 2.41s/it]
11391it [5:15:55, 2.09s/it]
11392it [5:15:56, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11393it [5:15:57, 1.76s/it]
11394it [5:15:59, 1.62s/it]
11395it [5:16:00, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11396it [5:16:02, 1.56s/it]
11397it [5:16:03, 1.50s/it]
11398it [5:16:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11399it [5:16:06, 1.45s/it]
11400it [5:16:07, 1.40s/it]
11401it [5:16:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11402it [5:16:10, 1.39s/it]
11403it [5:16:11, 1.36s/it]
11404it [5:16:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11405it [5:16:14, 1.37s/it]
11406it [5:16:15, 1.35s/it]
11407it [5:16:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11408it [5:16:18, 1.36s/it]
11409it [5:16:19, 1.34s/it]
11410it [5:16:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11411it [5:16:22, 1.37s/it]
11412it [5:16:23, 1.35s/it]
11413it [5:16:25, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11414it [5:16:26, 1.36s/it]
11415it [5:16:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11416it [5:16:30, 1.69s/it]
11417it [5:16:31, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11418it [5:16:33, 1.55s/it]
11419it [5:16:34, 1.47s/it]
11420it [5:16:35, 1.42s/it]
11421it [5:16:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11422it [5:16:38, 1.43s/it]
11423it [5:16:39, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11424it [5:16:43, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11425it [5:16:47, 2.67s/it]
11426it [5:16:49, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11427it [5:16:50, 2.05s/it]
11428it [5:16:51, 1.83s/it]
11429it [5:16:53, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11430it [5:16:54, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11431it [5:16:56, 1.54s/it]
11432it [5:16:57, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11433it [5:16:58, 1.46s/it]
11434it [5:17:00, 1.42s/it]
11435it [5:17:01, 1.39s/it]
11436it [5:17:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11437it [5:17:04, 1.39s/it]
11438it [5:17:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11439it [5:17:06, 1.40s/it]
11440it [5:17:08, 1.37s/it]
11441it [5:17:09, 1.35s/it]
11442it [5:17:10, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11443it [5:17:12, 1.36s/it]
11444it [5:17:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11445it [5:17:14, 1.37s/it]
11446it [5:17:16, 1.35s/it]
11447it [5:17:17, 1.35s/it]
11448it [5:17:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11449it [5:17:20, 1.37s/it]
11450it [5:17:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11451it [5:17:23, 1.39s/it]
11452it [5:17:24, 1.36s/it]
11453it [5:17:25, 1.34s/it]
11454it [5:17:27, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11455it [5:17:28, 1.35s/it]
11456it [5:17:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11457it [5:17:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11458it [5:17:32, 1.37s/it]
11459it [5:17:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11460it [5:17:35, 1.41s/it]
11461it [5:17:36, 1.38s/it]
11462it [5:17:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11463it [5:17:39, 1.40s/it]
11464it [5:17:40, 1.37s/it]
11465it [5:17:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11466it [5:17:43, 1.38s/it]
11467it [5:17:44, 1.36s/it]
11468it [5:17:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11469it [5:17:47, 1.38s/it]
11470it [5:17:49, 1.36s/it]
11471it [5:17:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11472it [5:17:51, 1.39s/it]
11473it [5:17:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11474it [5:17:54, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11475it [5:17:56, 1.50s/it]
11476it [5:17:57, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11477it [5:17:59, 1.46s/it]
11478it [5:18:00, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11479it [5:18:02, 1.44s/it]
11480it [5:18:03, 1.42s/it]
11481it [5:18:04, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11482it [5:18:06, 1.42s/it]
11483it [5:18:07, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11484it [5:18:08, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11485it [5:18:10, 1.41s/it]
11486it [5:18:11, 1.37s/it]
11487it [5:18:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11488it [5:18:14, 1.41s/it]
11489it [5:18:15, 1.39s/it]
11490it [5:18:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11491it [5:18:21, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11492it [5:18:22, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11493it [5:18:24, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11494it [5:18:25, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11495it [5:18:27, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11496it [5:18:28, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11497it [5:18:30, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11498it [5:18:31, 1.51s/it]
11499it [5:18:32, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11500it [5:18:34, 1.45s/it]
11501it [5:18:35, 1.41s/it]
11502it [5:18:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11503it [5:18:38, 1.41s/it]
11504it [5:18:39, 1.37s/it]
11505it [5:18:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11506it [5:18:42, 1.39s/it]
11507it [5:18:43, 1.37s/it]
11508it [5:18:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11509it [5:18:46, 1.40s/it]
11510it [5:18:47, 1.36s/it]
11511it [5:18:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11512it [5:18:50, 1.38s/it]
11513it [5:18:51, 1.36s/it]
11514it [5:18:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11515it [5:18:54, 1.37s/it]
11516it [5:18:55, 1.35s/it]
11517it [5:18:57, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11518it [5:18:58, 1.37s/it]
11519it [5:19:00, 1.35s/it]
11520it [5:19:01, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11521it [5:19:02, 1.36s/it]
11522it [5:19:04, 1.34s/it]
11523it [5:19:05, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11524it [5:19:06, 1.36s/it]
11525it [5:19:08, 1.34s/it]
11526it [5:19:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11527it [5:19:10, 1.38s/it]
11528it [5:19:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11529it [5:19:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11530it [5:19:15, 1.41s/it]
11531it [5:19:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11532it [5:19:17, 1.43s/it]
11533it [5:19:19, 1.40s/it]
11534it [5:19:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11535it [5:19:22, 1.41s/it]
11536it [5:19:23, 1.39s/it]
11537it [5:19:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11538it [5:19:26, 1.40s/it]
11539it [5:19:27, 1.37s/it]
11540it [5:19:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11541it [5:19:30, 1.39s/it]
11542it [5:19:31, 1.37s/it]
11543it [5:19:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11544it [5:19:34, 1.38s/it]
11545it [5:19:35, 1.36s/it]
11546it [5:19:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11547it [5:19:38, 1.36s/it]
11548it [5:19:39, 1.34s/it]
11549it [5:19:40, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11550it [5:19:42, 1.36s/it]
11551it [5:19:43, 1.34s/it]
11552it [5:19:45, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11553it [5:19:46, 1.36s/it]
11554it [5:19:47, 1.35s/it]
11555it [5:19:49, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11556it [5:19:50, 1.38s/it]
11557it [5:19:51, 1.37s/it]
11558it [5:19:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11559it [5:19:54, 1.39s/it]
11560it [5:19:56, 1.37s/it]
11561it [5:19:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11562it [5:19:58, 1.38s/it]
11563it [5:20:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11564it [5:20:01, 1.39s/it]
11565it [5:20:02, 1.37s/it]
11566it [5:20:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11567it [5:20:05, 1.36s/it]
11568it [5:20:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11569it [5:20:08, 1.38s/it]
11570it [5:20:09, 1.36s/it]
11571it [5:20:10, 1.35s/it]
11572it [5:20:12, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11573it [5:20:13, 1.35s/it]
11574it [5:20:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11575it [5:20:16, 1.38s/it]
11576it [5:20:17, 1.37s/it]
11577it [5:20:19, 1.35s/it]
11578it [5:20:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11579it [5:20:21, 1.37s/it]
11580it [5:20:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11581it [5:20:24, 1.38s/it]
11582it [5:20:25, 1.35s/it]
11583it [5:20:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11584it [5:20:28, 1.37s/it]
11585it [5:20:29, 1.35s/it]
11586it [5:20:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11587it [5:20:32, 1.39s/it]
11588it [5:20:34, 1.37s/it]
11589it [5:20:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11590it [5:20:36, 1.37s/it]
11591it [5:20:38, 1.35s/it]
11592it [5:20:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11593it [5:20:40, 1.41s/it]
11594it [5:20:42, 1.37s/it]
11595it [5:20:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11596it [5:20:45, 1.38s/it]
11597it [5:20:46, 1.37s/it]
11598it [5:20:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11599it [5:20:49, 1.37s/it]
11600it [5:20:50, 1.35s/it]
11601it [5:20:51, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11602it [5:20:53, 1.36s/it]
11603it [5:20:54, 1.34s/it]
11604it [5:20:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11605it [5:20:57, 1.36s/it]
11606it [5:20:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11607it [5:21:00, 1.41s/it]
11608it [5:21:01, 1.38s/it]
11609it [5:21:02, 1.35s/it]
11610it [5:21:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11611it [5:21:09, 2.51s/it]
11612it [5:21:10, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11613it [5:21:16, 3.43s/it]
11614it [5:21:18, 2.79s/it]
11615it [5:21:19, 2.35s/it]
11616it [5:21:20, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11617it [5:21:22, 1.87s/it]
11618it [5:21:23, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11619it [5:21:24, 1.61s/it]
11620it [5:21:26, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11621it [5:21:27, 1.48s/it]
11622it [5:21:28, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11623it [5:21:30, 1.44s/it]
11624it [5:21:31, 1.40s/it]
11625it [5:21:33, 1.37s/it]
11626it [5:21:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11627it [5:21:35, 1.37s/it]
11628it [5:21:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11629it [5:21:38, 1.37s/it]
11630it [5:21:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11631it [5:21:41, 1.38s/it]
11632it [5:21:42, 1.35s/it]
11633it [5:21:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11634it [5:21:45, 1.37s/it]
11635it [5:21:46, 1.36s/it]
11636it [5:21:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11637it [5:21:49, 1.39s/it]
11638it [5:21:50, 1.36s/it]
11639it [5:21:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11640it [5:21:53, 1.39s/it]
11641it [5:21:54, 1.37s/it]
11642it [5:21:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11643it [5:21:57, 1.40s/it]
11644it [5:21:58, 1.37s/it]
11645it [5:22:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11646it [5:22:01, 1.37s/it]
11647it [5:22:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11648it [5:22:04, 1.38s/it]
11649it [5:22:05, 1.36s/it]
11650it [5:22:07, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11651it [5:22:08, 1.36s/it]
11652it [5:22:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11653it [5:22:11, 1.37s/it]
11654it [5:22:12, 1.35s/it]
11655it [5:22:13, 1.34s/it]
11656it [5:22:15, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11657it [5:22:16, 1.37s/it]
11658it [5:22:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11659it [5:22:19, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11660it [5:22:21, 1.47s/it]
11661it [5:22:22, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11662it [5:22:23, 1.44s/it]
11663it [5:22:25, 1.39s/it]
11664it [5:22:26, 1.36s/it]
11665it [5:22:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11666it [5:22:29, 1.36s/it]
11667it [5:22:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11668it [5:22:31, 1.37s/it]
11669it [5:22:33, 1.34s/it]
11670it [5:22:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11671it [5:22:35, 1.37s/it]
11672it [5:22:37, 1.36s/it]
11673it [5:22:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11674it [5:22:39, 1.37s/it]
11675it [5:22:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11676it [5:22:42, 1.38s/it]
11677it [5:22:44, 1.36s/it]
11678it [5:22:45, 1.34s/it]
11679it [5:22:46, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11680it [5:22:48, 1.35s/it]
11681it [5:22:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11682it [5:22:50, 1.41s/it]
11683it [5:22:52, 1.38s/it]
11684it [5:22:53, 1.35s/it]
11685it [5:22:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11686it [5:22:56, 1.38s/it]
11687it [5:22:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11688it [5:22:59, 1.43s/it]
11689it [5:23:00, 1.40s/it]
11690it [5:23:01, 1.36s/it]
11691it [5:23:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11692it [5:23:04, 1.38s/it]
11693it [5:23:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11694it [5:23:07, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11695it [5:23:09, 1.47s/it]
11696it [5:23:10, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11697it [5:23:11, 1.43s/it]
11698it [5:23:13, 1.39s/it]
11699it [5:23:14, 1.36s/it]
11700it [5:23:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11701it [5:23:17, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11702it [5:23:18, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11703it [5:23:20, 1.48s/it]
11704it [5:23:21, 1.44s/it]
11705it [5:23:23, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11706it [5:23:24, 1.43s/it]
11707it [5:23:25, 1.38s/it]
11708it [5:23:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11709it [5:23:28, 1.40s/it]
11710it [5:23:29, 1.37s/it]
11711it [5:23:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11712it [5:23:32, 1.41s/it]
11713it [5:23:34, 1.38s/it]
11714it [5:23:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11715it [5:23:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11716it [5:23:38, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11717it [5:23:40, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11718it [5:23:41, 1.56s/it]
11719it [5:23:43, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11720it [5:23:44, 1.48s/it]
11721it [5:23:45, 1.44s/it]
11722it [5:23:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11723it [5:23:48, 1.41s/it]
11724it [5:23:50, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11725it [5:23:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11726it [5:23:52, 1.38s/it]
11727it [5:23:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11728it [5:23:55, 1.39s/it]
11729it [5:23:56, 1.36s/it]
11730it [5:23:58, 1.34s/it]
11731it [5:23:59, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11732it [5:24:00, 1.37s/it]
11733it [5:24:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11734it [5:24:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11735it [5:24:05, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11736it [5:24:06, 1.40s/it]
11737it [5:24:07, 1.37s/it]
11738it [5:24:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11739it [5:24:10, 1.37s/it]
11740it [5:24:11, 1.35s/it]
11741it [5:24:13, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11742it [5:24:14, 1.36s/it]
11743it [5:24:15, 1.35s/it]
11744it [5:24:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11745it [5:24:18, 1.39s/it]
11746it [5:24:19, 1.36s/it]
11747it [5:24:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11748it [5:24:22, 1.38s/it]
11749it [5:24:23, 1.36s/it]
11750it [5:24:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11751it [5:24:26, 1.37s/it]
11752it [5:24:28, 1.35s/it]
11753it [5:24:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11754it [5:24:30, 1.37s/it]
11755it [5:24:32, 1.35s/it]
11756it [5:24:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11757it [5:24:34, 1.37s/it]
11758it [5:24:36, 1.35s/it]
11759it [5:24:37, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11760it [5:24:38, 1.37s/it]
11761it [5:24:40, 1.35s/it]
11762it [5:24:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11763it [5:24:43, 1.40s/it]
11764it [5:24:44, 1.38s/it]
11765it [5:24:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11766it [5:24:47, 1.40s/it]
11767it [5:24:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11768it [5:24:50, 1.42s/it]
11769it [5:24:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11770it [5:24:52, 1.43s/it]
11771it [5:24:54, 1.39s/it]
11772it [5:24:55, 1.36s/it]
11773it [5:24:56, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11774it [5:24:58, 1.36s/it]
11775it [5:24:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11776it [5:25:00, 1.37s/it]
11777it [5:25:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11778it [5:25:03, 1.39s/it]
11779it [5:25:05, 1.37s/it]
11780it [5:25:06, 1.36s/it]
11781it [5:25:07, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11782it [5:25:09, 1.36s/it]
11783it [5:25:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11784it [5:25:11, 1.38s/it]
11785it [5:25:13, 1.35s/it]
11786it [5:25:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11787it [5:25:15, 1.37s/it]
11788it [5:25:17, 1.35s/it]
11789it [5:25:18, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11790it [5:25:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11791it [5:25:21, 1.38s/it]
11792it [5:25:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11793it [5:25:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11794it [5:25:25, 1.39s/it]
11795it [5:25:26, 1.36s/it]
11796it [5:25:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11797it [5:25:29, 1.38s/it]
11798it [5:25:30, 1.35s/it]
11799it [5:25:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11800it [5:25:33, 1.37s/it]
11801it [5:25:34, 1.36s/it]
11802it [5:25:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11803it [5:25:37, 1.39s/it]
11804it [5:25:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11805it [5:25:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11806it [5:25:41, 1.39s/it]
11807it [5:25:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11808it [5:25:44, 1.40s/it]
11809it [5:25:45, 1.37s/it]
11810it [5:25:47, 1.36s/it]
11811it [5:25:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11812it [5:25:50, 1.42s/it]
11813it [5:25:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11814it [5:25:52, 1.42s/it]
11815it [5:25:54, 1.39s/it]
11816it [5:25:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11817it [5:25:57, 1.41s/it]
11818it [5:25:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11819it [5:25:59, 1.42s/it]
11820it [5:26:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11821it [5:26:02, 1.43s/it]
11822it [5:26:04, 1.40s/it]
11823it [5:26:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11824it [5:26:06, 1.40s/it]
11825it [5:26:08, 1.37s/it]
11826it [5:26:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11827it [5:26:10, 1.39s/it]
11828it [5:26:12, 1.36s/it]
11829it [5:26:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11830it [5:26:15, 1.38s/it]
11831it [5:26:16, 1.36s/it]
11832it [5:26:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11833it [5:26:19, 1.38s/it]
11834it [5:26:20, 1.37s/it]
11835it [5:26:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11836it [5:26:23, 1.40s/it]
11837it [5:26:24, 1.38s/it]
11838it [5:26:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11839it [5:26:27, 1.40s/it]
11840it [5:26:28, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11841it [5:26:30, 1.44s/it]
11842it [5:26:31, 1.40s/it]
11843it [5:26:32, 1.36s/it]
11844it [5:26:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11845it [5:26:35, 1.38s/it]
11846it [5:26:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11847it [5:26:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11848it [5:26:39, 1.40s/it]
11849it [5:26:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11850it [5:26:42, 1.41s/it]
11851it [5:26:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11852it [5:26:45, 1.40s/it]
11853it [5:26:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11854it [5:26:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11855it [5:26:49, 1.40s/it]
11856it [5:26:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11857it [5:26:54, 1.92s/it]
11858it [5:26:55, 1.73s/it]
11859it [5:26:56, 1.59s/it]
11860it [5:26:57, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11861it [5:26:59, 1.51s/it]
11862it [5:27:00, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11863it [5:27:03, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11864it [5:27:04, 1.63s/it]
11865it [5:27:05, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11866it [5:27:07, 1.53s/it]
11867it [5:27:08, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11868it [5:27:10, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11869it [5:27:11, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11870it [5:27:13, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11871it [5:27:14, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11872it [5:27:16, 1.48s/it]
11873it [5:27:17, 1.44s/it]
11874it [5:27:18, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11875it [5:27:20, 1.42s/it]
11876it [5:27:21, 1.39s/it]
11877it [5:27:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11878it [5:27:24, 1.40s/it]
11879it [5:27:25, 1.38s/it]
11880it [5:27:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11881it [5:27:28, 1.41s/it]
11882it [5:27:29, 1.38s/it]
11883it [5:27:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11884it [5:27:32, 1.40s/it]
11885it [5:27:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11886it [5:27:35, 1.39s/it]
11887it [5:27:36, 1.37s/it]
11888it [5:27:37, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11889it [5:27:39, 1.38s/it]
11890it [5:27:40, 1.37s/it]
11891it [5:27:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11892it [5:27:43, 1.40s/it]
11893it [5:27:44, 1.37s/it]
11894it [5:27:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11895it [5:27:47, 1.38s/it]
11896it [5:27:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11897it [5:27:50, 1.39s/it]
11898it [5:27:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11899it [5:27:58, 2.88s/it]
11900it [5:27:59, 2.41s/it]
11901it [5:28:00, 2.08s/it]
11902it [5:28:02, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11903it [5:28:03, 1.71s/it]
11904it [5:28:04, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11905it [5:28:06, 1.54s/it]
11906it [5:28:07, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11907it [5:28:09, 1.49s/it]
11908it [5:28:10, 1.43s/it]
11909it [5:28:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11910it [5:28:13, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11911it [5:28:14, 1.50s/it]
11912it [5:28:16, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11913it [5:28:17, 1.47s/it]
11914it [5:28:19, 1.43s/it]
11915it [5:28:20, 1.39s/it]
11916it [5:28:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11917it [5:28:23, 1.37s/it]
11918it [5:28:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11919it [5:28:26, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11920it [5:28:27, 1.50s/it]
11921it [5:28:29, 1.44s/it]
11922it [5:28:30, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11923it [5:28:31, 1.42s/it]
11924it [5:28:33, 1.39s/it]
11925it [5:28:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11926it [5:28:35, 1.41s/it]
11927it [5:28:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11928it [5:28:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11929it [5:28:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11930it [5:28:41, 1.40s/it]
11931it [5:28:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11932it [5:28:44, 1.41s/it]
11933it [5:28:45, 1.39s/it]
11934it [5:28:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11935it [5:28:48, 1.41s/it]
11936it [5:28:49, 1.39s/it]
11937it [5:28:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11938it [5:28:52, 1.40s/it]
11939it [5:28:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11940it [5:28:55, 1.39s/it]
11941it [5:28:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11942it [5:29:01, 2.53s/it]
11943it [5:29:03, 2.17s/it]
11944it [5:29:04, 1.91s/it]
11945it [5:29:05, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11946it [5:29:07, 1.65s/it]
11947it [5:29:08, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11948it [5:29:10, 1.54s/it]
11949it [5:29:11, 1.49s/it]
11950it [5:29:12, 1.43s/it]
11951it [5:29:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11952it [5:29:15, 1.40s/it]
11953it [5:29:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11954it [5:29:18, 1.41s/it]
11955it [5:29:19, 1.38s/it]
11956it [5:29:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11957it [5:29:22, 1.39s/it]
11958it [5:29:23, 1.36s/it]
11959it [5:29:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11960it [5:29:26, 1.41s/it]
11961it [5:29:27, 1.39s/it]
11962it [5:29:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11963it [5:29:30, 1.38s/it]
11964it [5:29:31, 1.36s/it]
11965it [5:29:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11966it [5:29:34, 1.39s/it]
11967it [5:29:36, 1.37s/it]
11968it [5:29:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11969it [5:29:38, 1.38s/it]
11970it [5:29:40, 1.36s/it]
11971it [5:29:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11972it [5:29:42, 1.37s/it]
11973it [5:29:44, 1.34s/it]
11974it [5:29:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11975it [5:29:46, 1.38s/it]
11976it [5:29:48, 1.36s/it]
11977it [5:29:49, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11978it [5:29:50, 1.36s/it]
11979it [5:29:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11980it [5:29:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11981it [5:29:55, 1.38s/it]
11982it [5:29:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11983it [5:29:57, 1.40s/it]
11984it [5:29:59, 1.38s/it]
11985it [5:30:00, 1.35s/it]
11986it [5:30:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11987it [5:30:03, 1.38s/it]
11988it [5:30:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11989it [5:30:06, 1.38s/it]
11990it [5:30:07, 1.35s/it]
11991it [5:30:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11992it [5:30:10, 1.35s/it]
11993it [5:30:11, 1.33s/it]
11994it [5:30:12, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11995it [5:30:14, 1.36s/it]
11996it [5:30:15, 1.35s/it]
11997it [5:30:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11998it [5:30:18, 1.37s/it]
11999it [5:30:19, 1.35s/it]
12000it [5:30:20, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12001it [5:30:22, 1.37s/it]
12002it [5:30:23, 1.35s/it]
12003it [5:30:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12004it [5:30:26, 1.40s/it]
12005it [5:30:27, 1.37s/it]
12006it [5:30:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12007it [5:30:30, 1.38s/it]
12008it [5:30:31, 1.37s/it]
12009it [5:30:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12010it [5:30:34, 1.37s/it]
12011it [5:30:35, 1.36s/it]
12012it [5:30:37, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12013it [5:30:38, 1.37s/it]
12014it [5:30:39, 1.35s/it]
12015it [5:30:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12016it [5:30:42, 1.38s/it]
12017it [5:30:43, 1.36s/it]
12018it [5:30:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12019it [5:30:46, 1.38s/it]
12020it [5:30:48, 1.37s/it]
12021it [5:30:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12022it [5:30:50, 1.38s/it]
12023it [5:30:52, 1.36s/it]
12024it [5:30:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12025it [5:30:54, 1.38s/it]
12026it [5:30:56, 1.36s/it]
12027it [5:30:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12028it [5:30:59, 1.39s/it]
12029it [5:31:00, 1.36s/it]
12030it [5:31:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12031it [5:31:03, 1.38s/it]
12032it [5:31:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12033it [5:31:05, 1.42s/it]
12034it [5:31:07, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12035it [5:31:10, 1.99s/it]
12036it [5:31:12, 1.80s/it]
12037it [5:31:13, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12038it [5:31:14, 1.62s/it]
12039it [5:31:16, 1.52s/it]
12040it [5:31:17, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12041it [5:31:18, 1.46s/it]
12042it [5:31:20, 1.41s/it]
12043it [5:31:21, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12044it [5:31:23, 1.40s/it]
12045it [5:31:24, 1.37s/it]
12046it [5:31:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12047it [5:31:27, 1.37s/it]
12048it [5:31:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12049it [5:31:29, 1.40s/it]
12050it [5:31:31, 1.37s/it]
12051it [5:31:32, 1.35s/it]
12052it [5:31:33, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12053it [5:31:35, 1.39s/it]
12054it [5:31:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12055it [5:31:38, 1.40s/it]
12056it [5:31:39, 1.37s/it]
12057it [5:31:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12058it [5:31:42, 1.38s/it]
12059it [5:31:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12060it [5:31:44, 1.39s/it]
12061it [5:31:46, 1.37s/it]
12062it [5:31:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12063it [5:31:49, 1.41s/it]
12064it [5:31:50, 1.38s/it]
12065it [5:31:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12066it [5:31:53, 1.46s/it]
12067it [5:31:54, 1.42s/it]
12068it [5:31:56, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12069it [5:31:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12070it [5:31:58, 1.40s/it]
12071it [5:32:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12072it [5:32:01, 1.38s/it]
12073it [5:32:02, 1.36s/it]
12074it [5:32:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12075it [5:32:05, 1.37s/it]
12076it [5:32:06, 1.35s/it]
12077it [5:32:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12078it [5:32:09, 1.37s/it]
12079it [5:32:10, 1.35s/it]
12080it [5:32:12, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12081it [5:32:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12082it [5:32:15, 1.36s/it]
12083it [5:32:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12084it [5:32:17, 1.37s/it]
12085it [5:32:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12086it [5:32:20, 1.36s/it]
12087it [5:32:21, 1.34s/it]
12088it [5:32:23, 1.33s/it]
12089it [5:32:24, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12090it [5:32:25, 1.36s/it]
12091it [5:32:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12092it [5:32:28, 1.39s/it]
12093it [5:32:29, 1.36s/it]
12094it [5:32:31, 1.34s/it]
12095it [5:32:32, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12096it [5:32:33, 1.36s/it]
12097it [5:32:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12098it [5:32:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12099it [5:32:38, 1.38s/it]
12100it [5:32:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12101it [5:32:43, 2.20s/it]
12102it [5:32:44, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12103it [5:32:46, 1.81s/it]
12104it [5:32:47, 1.67s/it]
12105it [5:32:49, 1.56s/it]
12106it [5:32:50, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12107it [5:32:54, 2.24s/it]
12108it [5:32:55, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12109it [5:32:57, 1.83s/it]
12110it [5:32:58, 1.68s/it]
12111it [5:32:59, 1.57s/it]
12112it [5:33:01, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12113it [5:33:03, 1.61s/it]
12114it [5:33:04, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12115it [5:33:05, 1.54s/it]
12116it [5:33:07, 1.47s/it]
12117it [5:33:08, 1.42s/it]
12118it [5:33:09, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12119it [5:33:11, 1.41s/it]
12120it [5:33:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12121it [5:33:14, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12122it [5:33:15, 1.45s/it]
12123it [5:33:16, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12124it [5:33:18, 1.44s/it]
12125it [5:33:19, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12126it [5:33:21, 1.43s/it]
12127it [5:33:22, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12128it [5:33:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12129it [5:33:25, 1.44s/it]
12130it [5:33:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12131it [5:33:28, 1.41s/it]
12132it [5:33:29, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12133it [5:33:31, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12134it [5:33:32, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12135it [5:33:34, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12136it [5:33:37, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12137it [5:33:39, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12138it [5:33:40, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12139it [5:33:42, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12140it [5:33:43, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12141it [5:33:45, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12142it [5:33:46, 1.57s/it]
12143it [5:33:47, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12144it [5:33:49, 1.50s/it]
12145it [5:33:50, 1.44s/it]
12146it [5:33:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12147it [5:33:53, 1.42s/it]
12148it [5:33:54, 1.39s/it]
12149it [5:33:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12150it [5:33:57, 1.39s/it]
12151it [5:33:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12152it [5:34:00, 1.44s/it]
12153it [5:34:01, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12154it [5:34:03, 1.43s/it]
12155it [5:34:04, 1.39s/it]
12156it [5:34:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12157it [5:34:07, 1.37s/it]
12158it [5:34:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12159it [5:34:10, 1.39s/it]
12160it [5:34:11, 1.37s/it]
12161it [5:34:12, 1.34s/it]
12162it [5:34:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12163it [5:34:15, 1.37s/it]
12164it [5:34:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12165it [5:34:18, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12166it [5:34:19, 1.41s/it]
12167it [5:34:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12168it [5:34:22, 1.42s/it]
12169it [5:34:23, 1.38s/it]
12170it [5:34:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12171it [5:34:26, 1.38s/it]
12172it [5:34:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12173it [5:34:29, 1.39s/it]
12174it [5:34:30, 1.37s/it]
12175it [5:34:31, 1.35s/it]
12176it [5:34:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12177it [5:34:34, 1.38s/it]
12178it [5:34:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12179it [5:34:37, 1.39s/it]
12180it [5:34:38, 1.37s/it]
12181it [5:34:40, 1.34s/it]
12182it [5:34:41, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12183it [5:34:42, 1.36s/it]
12184it [5:34:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12185it [5:34:45, 1.41s/it]
12186it [5:34:47, 1.39s/it]
12187it [5:34:48, 1.37s/it]
12188it [5:34:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12189it [5:34:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12190it [5:34:56, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12191it [5:34:57, 2.21s/it]
12192it [5:34:59, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12193it [5:35:00, 1.80s/it]
12194it [5:35:01, 1.65s/it]
12195it [5:35:03, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12196it [5:35:04, 1.53s/it]
12197it [5:35:06, 1.47s/it]
12198it [5:35:07, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12199it [5:35:08, 1.43s/it]
12200it [5:35:10, 1.40s/it]
12201it [5:35:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12202it [5:35:12, 1.41s/it]
12203it [5:35:14, 1.38s/it]
12204it [5:35:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12205it [5:35:17, 1.40s/it]
12206it [5:35:18, 1.38s/it]
12207it [5:35:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12208it [5:35:21, 1.41s/it]
12209it [5:35:22, 1.38s/it]
12210it [5:35:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12211it [5:35:25, 1.38s/it]
12212it [5:35:26, 1.37s/it]
12213it [5:35:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12214it [5:35:29, 1.38s/it]
12215it [5:35:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12216it [5:35:32, 1.40s/it]
12217it [5:35:33, 1.37s/it]
12218it [5:35:34, 1.36s/it]
12219it [5:35:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12220it [5:35:37, 1.39s/it]
12221it [5:35:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12222it [5:35:41, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12223it [5:35:43, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12224it [5:35:44, 1.57s/it]
12225it [5:35:45, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12226it [5:35:47, 1.50s/it]
12227it [5:35:48, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12228it [5:35:50, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12229it [5:35:53, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12230it [5:35:54, 1.87s/it]
12231it [5:35:56, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12232it [5:35:57, 1.68s/it]
12233it [5:35:59, 1.56s/it]
12234it [5:36:00, 1.48s/it]
12235it [5:36:01, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12236it [5:36:03, 1.44s/it]
12237it [5:36:04, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12238it [5:36:06, 1.42s/it]
12239it [5:36:07, 1.39s/it]
12240it [5:36:08, 1.36s/it]
12241it [5:36:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12242it [5:36:11, 1.39s/it]
12243it [5:36:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12244it [5:36:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12245it [5:36:15, 1.42s/it]
12246it [5:36:17, 1.40s/it]
12247it [5:36:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12248it [5:36:19, 1.41s/it]
12249it [5:36:21, 1.38s/it]
12250it [5:36:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12251it [5:36:23, 1.41s/it]
12252it [5:36:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12253it [5:36:26, 1.43s/it]
12254it [5:36:28, 1.39s/it]
12255it [5:36:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12256it [5:36:30, 1.40s/it]
12257it [5:36:32, 1.38s/it]
12258it [5:36:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12259it [5:36:35, 1.40s/it]
12260it [5:36:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12261it [5:36:37, 1.41s/it]
12262it [5:36:39, 1.39s/it]
12263it [5:36:40, 1.36s/it]
12264it [5:36:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12265it [5:36:43, 1.37s/it]
12266it [5:36:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12267it [5:36:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12268it [5:36:47, 1.38s/it]
12269it [5:36:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12270it [5:36:50, 1.40s/it]
12271it [5:36:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12272it [5:36:52, 1.40s/it]
12273it [5:36:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12274it [5:36:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12275it [5:36:57, 1.41s/it]
12276it [5:36:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12277it [5:36:59, 1.41s/it]
12278it [5:37:01, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12279it [5:37:02, 1.40s/it]
12280it [5:37:03, 1.37s/it]
12281it [5:37:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12282it [5:37:06, 1.41s/it]
12283it [5:37:08, 1.37s/it]
12284it [5:37:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12285it [5:37:10, 1.38s/it]
12286it [5:37:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12287it [5:37:13, 1.38s/it]
12288it [5:37:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12289it [5:37:16, 1.42s/it]
12290it [5:37:17, 1.38s/it]
12291it [5:37:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12292it [5:37:20, 1.40s/it]
12293it [5:37:21, 1.37s/it]
12294it [5:37:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12295it [5:37:24, 1.38s/it]
12296it [5:37:25, 1.36s/it]
12297it [5:37:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12298it [5:37:28, 1.37s/it]
12299it [5:37:29, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12300it [5:37:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12301it [5:37:32, 1.41s/it]
12302it [5:37:34, 1.37s/it]
12303it [5:37:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12304it [5:37:36, 1.40s/it]
12305it [5:37:38, 1.37s/it]
12306it [5:37:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12307it [5:37:41, 1.39s/it]
12308it [5:37:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12309it [5:37:44, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12310it [5:37:45, 1.49s/it]
12311it [5:37:46, 1.44s/it]
12312it [5:37:48, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12313it [5:37:52, 2.32s/it]
12314it [5:37:53, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12315it [5:38:00, 3.24s/it]
12316it [5:38:01, 2.66s/it]
12317it [5:38:02, 2.25s/it]
12318it [5:38:04, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12319it [5:38:05, 1.82s/it]
12320it [5:38:06, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12321it [5:38:15, 3.88s/it]
12322it [5:38:17, 3.11s/it]
12323it [5:38:18, 2.56s/it]
12324it [5:38:19, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12325it [5:38:24, 3.05s/it]
12326it [5:38:26, 2.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12327it [5:38:27, 2.22s/it]
12328it [5:38:29, 1.97s/it]
12329it [5:38:30, 1.77s/it]
12330it [5:38:31, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12331it [5:38:33, 1.56s/it]
12332it [5:38:34, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12333it [5:38:35, 1.48s/it]
12334it [5:38:37, 1.42s/it]
12335it [5:38:38, 1.38s/it]
12336it [5:38:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12337it [5:38:41, 1.38s/it]
12338it [5:38:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12339it [5:38:44, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12340it [5:38:45, 1.46s/it]
12341it [5:38:46, 1.43s/it]
12342it [5:38:48, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12343it [5:38:49, 1.42s/it]
12344it [5:38:51, 1.38s/it]
12345it [5:38:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12346it [5:38:53, 1.38s/it]
12347it [5:38:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12348it [5:38:56, 1.41s/it]
12349it [5:38:57, 1.37s/it]
12350it [5:38:59, 1.35s/it]
12351it [5:39:00, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12352it [5:39:01, 1.37s/it]
12353it [5:39:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12354it [5:39:04, 1.41s/it]
12355it [5:39:06, 1.38s/it]
12356it [5:39:07, 1.36s/it]
12357it [5:39:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12358it [5:39:10, 1.36s/it]
12359it [5:39:11, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12360it [5:39:12, 1.36s/it]
12361it [5:39:14, 1.35s/it]
12362it [5:39:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12363it [5:39:16, 1.38s/it]
12364it [5:39:18, 1.36s/it]
12365it [5:39:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12366it [5:39:20, 1.38s/it]
12367it [5:39:22, 1.36s/it]
12368it [5:39:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12369it [5:39:25, 1.38s/it]
12370it [5:39:26, 1.36s/it]
12371it [5:39:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12372it [5:39:29, 1.39s/it]
12373it [5:39:30, 1.37s/it]
12374it [5:39:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12375it [5:39:36, 2.27s/it]
12376it [5:39:37, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12377it [5:39:42, 3.00s/it]
12378it [5:39:44, 2.50s/it]
12379it [5:39:45, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12380it [5:39:47, 1.96s/it]
12381it [5:39:48, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12382it [5:39:49, 1.69s/it]
12383it [5:39:51, 1.58s/it]
12384it [5:39:52, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12385it [5:39:54, 1.52s/it]
12386it [5:39:55, 1.46s/it]
12387it [5:39:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12388it [5:39:58, 1.43s/it]
12389it [5:39:59, 1.40s/it]
12390it [5:40:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12391it [5:40:02, 1.40s/it]
12392it [5:40:03, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12393it [5:40:05, 1.42s/it]
12394it [5:40:06, 1.38s/it]
12395it [5:40:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12396it [5:40:09, 1.41s/it]
12397it [5:40:10, 1.38s/it]
12398it [5:40:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12399it [5:40:13, 1.39s/it]
12400it [5:40:14, 1.37s/it]
12401it [5:40:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12402it [5:40:17, 1.45s/it]
12403it [5:40:18, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12404it [5:40:20, 1.45s/it]
12405it [5:40:21, 1.41s/it]
12406it [5:40:23, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12407it [5:40:27, 2.38s/it]
12408it [5:40:29, 2.05s/it]
12409it [5:40:30, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12410it [5:40:31, 1.71s/it]
12411it [5:40:33, 1.59s/it]
12412it [5:40:34, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12413it [5:40:35, 1.50s/it]
12414it [5:40:37, 1.46s/it]
12415it [5:40:38, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12416it [5:40:40, 1.42s/it]
12417it [5:40:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12418it [5:40:42, 1.40s/it]
12419it [5:40:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12420it [5:40:45, 1.41s/it]
12421it [5:40:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12422it [5:40:48, 1.41s/it]
12423it [5:40:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12424it [5:40:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12425it [5:40:52, 1.41s/it]
12426it [5:40:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12427it [5:40:55, 1.41s/it]
12428it [5:40:56, 1.39s/it]
12429it [5:40:58, 1.37s/it]
12430it [5:40:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12431it [5:41:03, 2.29s/it]
12432it [5:41:05, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12433it [5:41:06, 1.90s/it]
12434it [5:41:08, 1.73s/it]
12435it [5:41:09, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12436it [5:41:11, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12437it [5:41:12, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12438it [5:41:15, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12439it [5:41:16, 1.75s/it]
12440it [5:41:18, 1.62s/it]
12441it [5:41:19, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12442it [5:41:20, 1.50s/it]
12443it [5:41:22, 1.44s/it]
12444it [5:41:23, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12445it [5:41:24, 1.42s/it]
12446it [5:41:26, 1.38s/it]
12447it [5:41:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12448it [5:41:28, 1.37s/it]
12449it [5:41:30, 1.36s/it]
12450it [5:41:31, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12451it [5:41:33, 1.39s/it]
12452it [5:41:34, 1.38s/it]
12453it [5:41:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12454it [5:41:37, 1.41s/it]
12455it [5:41:38, 1.37s/it]
12456it [5:41:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12457it [5:41:41, 1.39s/it]
12458it [5:41:42, 1.37s/it]
12459it [5:41:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12460it [5:41:45, 1.42s/it]
12461it [5:41:46, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12462it [5:41:48, 1.42s/it]
12463it [5:41:49, 1.40s/it]
12464it [5:41:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12465it [5:41:52, 1.40s/it]
12466it [5:41:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12467it [5:41:55, 1.40s/it]
12468it [5:41:56, 1.37s/it]
12469it [5:41:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12470it [5:41:59, 1.38s/it]
12471it [5:42:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12472it [5:42:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12473it [5:42:04, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12474it [5:42:05, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12475it [5:42:07, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12476it [5:42:08, 1.58s/it]
12477it [5:42:10, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12478it [5:42:11, 1.50s/it]
12479it [5:42:13, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12480it [5:42:18, 2.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12481it [5:42:19, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12482it [5:42:20, 1.95s/it]
12483it [5:42:22, 1.76s/it]
12484it [5:42:23, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12485it [5:42:25, 1.57s/it]
12486it [5:42:26, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12487it [5:42:27, 1.52s/it]
12488it [5:42:29, 1.46s/it]
12489it [5:42:30, 1.41s/it]
12490it [5:42:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12491it [5:42:33, 1.40s/it]
12492it [5:42:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12493it [5:42:36, 1.40s/it]
12494it [5:42:37, 1.37s/it]
12495it [5:42:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12496it [5:42:40, 1.39s/it]
12497it [5:42:41, 1.37s/it]
12498it [5:42:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12499it [5:42:44, 1.39s/it]
12500it [5:42:45, 1.37s/it]
12501it [5:42:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12502it [5:42:48, 1.38s/it]
12503it [5:42:49, 1.35s/it]
12504it [5:42:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12505it [5:42:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12506it [5:42:53, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12507it [5:42:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12508it [5:42:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12509it [5:42:58, 1.41s/it]
12510it [5:42:59, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12511it [5:43:00, 1.42s/it]
12512it [5:43:02, 1.39s/it]
12513it [5:43:03, 1.37s/it]
12514it [5:43:04, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12515it [5:43:06, 1.41s/it]
12516it [5:43:07, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12517it [5:43:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12518it [5:43:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12519it [5:43:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12520it [5:43:13, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12521it [5:43:14, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12522it [5:43:16, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12523it [5:43:18, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12524it [5:43:20, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12525it [5:43:26, 2.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12526it [5:43:27, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12527it [5:43:29, 2.21s/it]
12528it [5:43:30, 1.93s/it]
12529it [5:43:31, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12530it [5:43:33, 1.65s/it]
12531it [5:43:34, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12532it [5:43:36, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12533it [5:43:38, 1.67s/it]
12534it [5:43:39, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12535it [5:43:41, 1.56s/it]
12536it [5:43:42, 1.48s/it]
12537it [5:43:43, 1.42s/it]
12538it [5:43:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12539it [5:43:46, 1.42s/it]
12540it [5:43:47, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12541it [5:43:49, 1.45s/it]
12542it [5:43:50, 1.41s/it]
12543it [5:43:52, 1.38s/it]
12544it [5:43:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12545it [5:43:54, 1.41s/it]
12546it [5:43:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12547it [5:43:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12548it [5:43:58, 1.39s/it]
12549it [5:44:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12550it [5:44:01, 1.42s/it]
12551it [5:44:03, 1.39s/it]
12552it [5:44:04, 1.37s/it]
12553it [5:44:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12554it [5:44:07, 1.38s/it]
12555it [5:44:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12556it [5:44:10, 1.40s/it]
12557it [5:44:11, 1.37s/it]
12558it [5:44:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12559it [5:44:14, 1.37s/it]
12560it [5:44:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12561it [5:44:16, 1.36s/it]
12562it [5:44:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12563it [5:44:19, 1.37s/it]
12564it [5:44:20, 1.35s/it]
12565it [5:44:22, 1.34s/it]
12566it [5:44:23, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12567it [5:44:24, 1.35s/it]
12568it [5:44:26, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12569it [5:44:27, 1.37s/it]
12570it [5:44:28, 1.35s/it]
12571it [5:44:30, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12572it [5:44:32, 1.69s/it]
12573it [5:44:33, 1.58s/it]
12574it [5:44:35, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12575it [5:44:36, 1.50s/it]
12576it [5:44:38, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12577it [5:44:39, 1.47s/it]
12578it [5:44:40, 1.43s/it]
12579it [5:44:42, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12580it [5:44:43, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12581it [5:44:45, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12582it [5:44:47, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12583it [5:44:48, 1.55s/it]
12584it [5:44:49, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12585it [5:44:51, 1.46s/it]
12586it [5:44:52, 1.42s/it]
12587it [5:44:53, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12588it [5:44:55, 1.42s/it]
12589it [5:44:56, 1.39s/it]
12590it [5:44:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12591it [5:44:59, 1.41s/it]
12592it [5:45:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12593it [5:45:02, 1.39s/it]
12594it [5:45:03, 1.36s/it]
12595it [5:45:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12596it [5:45:06, 1.37s/it]
12597it [5:45:07, 1.35s/it]
12598it [5:45:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12599it [5:45:10, 1.37s/it]
12600it [5:45:11, 1.36s/it]
12601it [5:45:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12602it [5:45:14, 1.39s/it]
12603it [5:45:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12604it [5:45:17, 1.39s/it]
12605it [5:45:18, 1.37s/it]
12606it [5:45:19, 1.35s/it]
12607it [5:45:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12608it [5:45:22, 1.37s/it]
12609it [5:45:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12610it [5:45:25, 1.38s/it]
12611it [5:45:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12612it [5:45:28, 1.39s/it]
12613it [5:45:29, 1.36s/it]
12614it [5:45:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12615it [5:45:32, 1.38s/it]
12616it [5:45:33, 1.36s/it]
12617it [5:45:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12618it [5:45:36, 1.37s/it]
12619it [5:45:37, 1.35s/it]
12620it [5:45:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12621it [5:45:40, 1.38s/it]
12622it [5:45:41, 1.36s/it]
12623it [5:45:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12624it [5:45:44, 1.38s/it]
12625it [5:45:45, 1.36s/it]
12626it [5:45:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12627it [5:45:48, 1.40s/it]
12628it [5:45:50, 1.38s/it]
12629it [5:45:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12630it [5:45:52, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12631it [5:45:56, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12632it [5:46:04, 3.74s/it]
12633it [5:46:05, 3.01s/it]
12634it [5:46:06, 2.51s/it]
12635it [5:46:08, 2.15s/it]
12636it [5:46:09, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12637it [5:46:10, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12638it [5:46:13, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12639it [5:46:15, 1.93s/it]
12640it [5:46:16, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12641it [5:46:18, 1.66s/it]
12642it [5:46:19, 1.56s/it]
12643it [5:46:20, 1.48s/it]
12644it [5:46:21, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12645it [5:46:23, 1.43s/it]
12646it [5:46:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12647it [5:46:27, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12648it [5:46:29, 1.76s/it]
12649it [5:46:30, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12650it [5:46:31, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12651it [5:46:33, 1.53s/it]
12652it [5:46:34, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12653it [5:46:36, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12654it [5:46:37, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12655it [5:46:39, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12656it [5:46:41, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12657it [5:46:42, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12658it [5:46:43, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12659it [5:46:45, 1.48s/it]
12660it [5:46:46, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12661it [5:46:48, 1.45s/it]
12662it [5:46:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12663it [5:46:51, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12664it [5:46:53, 1.67s/it]
12665it [5:46:54, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12666it [5:46:56, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12667it [5:46:57, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12668it [5:46:59, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12669it [5:47:01, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12670it [5:47:03, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12671it [5:47:06, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12672it [5:47:07, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12673it [5:47:09, 1.81s/it]
12674it [5:47:10, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12675it [5:47:14, 2.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12676it [5:47:16, 2.17s/it]
12677it [5:47:17, 1.92s/it]
12678it [5:47:18, 1.73s/it]
12679it [5:47:20, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12680it [5:47:21, 1.56s/it]
12681it [5:47:23, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12682it [5:47:24, 1.49s/it]
12683it [5:47:25, 1.44s/it]
12684it [5:47:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12685it [5:47:28, 1.41s/it]
12686it [5:47:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12687it [5:47:31, 1.40s/it]
12688it [5:47:32, 1.37s/it]
12689it [5:47:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12690it [5:47:35, 1.37s/it]
12691it [5:47:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12692it [5:47:38, 1.40s/it]
12693it [5:47:39, 1.37s/it]
12694it [5:47:40, 1.35s/it]
12695it [5:47:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12696it [5:47:43, 1.39s/it]
12697it [5:47:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12698it [5:47:46, 1.40s/it]
12699it [5:47:47, 1.37s/it]
12700it [5:47:48, 1.35s/it]
12701it [5:47:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12702it [5:47:51, 1.36s/it]
12703it [5:47:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12704it [5:47:54, 1.39s/it]
12705it [5:47:55, 1.37s/it]
12706it [5:47:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12707it [5:47:58, 1.37s/it]
12708it [5:47:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12709it [5:48:02, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12710it [5:48:04, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12711it [5:48:06, 1.79s/it]
12712it [5:48:07, 1.65s/it]
12713it [5:48:08, 1.54s/it]
12714it [5:48:10, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12715it [5:48:11, 1.48s/it]
12716it [5:48:13, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12717it [5:48:14, 1.47s/it]
12718it [5:48:15, 1.42s/it]
12719it [5:48:17, 1.38s/it]
12720it [5:48:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12721it [5:48:19, 1.39s/it]
12722it [5:48:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12723it [5:48:22, 1.40s/it]
12724it [5:48:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12725it [5:48:25, 1.40s/it]
12726it [5:48:26, 1.38s/it]
12727it [5:48:28, 1.36s/it]
12728it [5:48:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12729it [5:48:30, 1.37s/it]
12730it [5:48:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12731it [5:48:33, 1.36s/it]
12732it [5:48:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12733it [5:48:36, 1.41s/it]
12734it [5:48:37, 1.39s/it]
12735it [5:48:39, 1.38s/it]
12736it [5:48:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12737it [5:48:41, 1.37s/it]
12738it [5:48:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12739it [5:48:44, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12740it [5:48:46, 1.44s/it]
12741it [5:48:47, 1.40s/it]
12742it [5:48:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12743it [5:48:50, 1.39s/it]
12744it [5:48:51, 1.36s/it]
12745it [5:48:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12746it [5:48:54, 1.45s/it]
12747it [5:48:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12748it [5:48:57, 1.40s/it]
12749it [5:48:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12750it [5:48:59, 1.39s/it]
12751it [5:49:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12752it [5:49:02, 1.41s/it]
12753it [5:49:04, 1.38s/it]
12754it [5:49:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12755it [5:49:06, 1.38s/it]
12756it [5:49:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12757it [5:49:09, 1.39s/it]
12758it [5:49:10, 1.36s/it]
12759it [5:49:12, 1.34s/it]
12760it [5:49:13, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12761it [5:49:14, 1.38s/it]
12762it [5:49:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12763it [5:49:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12764it [5:49:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12765it [5:49:20, 1.38s/it]
12766it [5:49:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12767it [5:49:23, 1.39s/it]
12768it [5:49:24, 1.37s/it]
12769it [5:49:25, 1.35s/it]
12770it [5:49:27, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12771it [5:49:28, 1.38s/it]
12772it [5:49:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12773it [5:49:31, 1.44s/it]
12774it [5:49:32, 1.41s/it]
12775it [5:49:34, 1.38s/it]
12776it [5:49:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12777it [5:49:36, 1.37s/it]
12778it [5:49:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12779it [5:49:39, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12780it [5:49:41, 1.44s/it]
12781it [5:49:42, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12782it [5:49:44, 1.43s/it]
12783it [5:49:45, 1.39s/it]
12784it [5:49:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12785it [5:49:48, 1.44s/it]
12786it [5:49:49, 1.41s/it]
12787it [5:49:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12788it [5:49:52, 1.42s/it]
12789it [5:49:53, 1.40s/it]
12790it [5:49:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12791it [5:49:56, 1.41s/it]
12792it [5:49:57, 1.38s/it]
12793it [5:49:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12794it [5:50:00, 1.38s/it]
12795it [5:50:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12796it [5:50:03, 1.39s/it]
12797it [5:50:04, 1.36s/it]
12798it [5:50:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12799it [5:50:07, 1.38s/it]
12800it [5:50:08, 1.36s/it]
12801it [5:50:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12802it [5:50:11, 1.36s/it]
12803it [5:50:12, 1.35s/it]
12804it [5:50:14, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12805it [5:50:15, 1.37s/it]
12806it [5:50:16, 1.35s/it]
12807it [5:50:18, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12808it [5:50:19, 1.35s/it]
12809it [5:50:20, 1.35s/it]
12810it [5:50:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12811it [5:50:23, 1.39s/it]
12812it [5:50:25, 1.37s/it]
12813it [5:50:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12814it [5:50:28, 1.41s/it]
12815it [5:50:29, 1.38s/it]
12816it [5:50:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12817it [5:50:32, 1.39s/it]
12818it [5:50:33, 1.36s/it]
12819it [5:50:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12820it [5:50:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12821it [5:50:37, 1.38s/it]
12822it [5:50:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12823it [5:50:40, 1.40s/it]
12824it [5:50:41, 1.37s/it]
12825it [5:50:42, 1.36s/it]
12826it [5:50:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12827it [5:50:45, 1.40s/it]
12828it [5:50:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12829it [5:50:48, 1.41s/it]
12830it [5:50:49, 1.39s/it]
12831it [5:50:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12832it [5:50:52, 1.39s/it]
12833it [5:50:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12834it [5:50:56, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12835it [5:50:57, 1.61s/it]
12836it [5:50:59, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12837it [5:51:00, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12838it [5:51:02, 1.46s/it]
12839it [5:51:03, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12840it [5:51:05, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12841it [5:51:07, 1.61s/it]
12842it [5:51:08, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12843it [5:51:09, 1.51s/it]
12844it [5:51:11, 1.46s/it]
12845it [5:51:12, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12846it [5:51:13, 1.43s/it]
12847it [5:51:15, 1.39s/it]
12848it [5:51:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12849it [5:51:18, 1.39s/it]
12850it [5:51:19, 1.36s/it]
12851it [5:51:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12852it [5:51:22, 1.37s/it]
12853it [5:51:23, 1.35s/it]
12854it [5:51:24, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12855it [5:51:26, 1.37s/it]
12856it [5:51:27, 1.35s/it]
12857it [5:51:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12858it [5:51:30, 1.38s/it]
12859it [5:51:31, 1.36s/it]
12860it [5:51:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12861it [5:51:34, 1.37s/it]
12862it [5:51:35, 1.35s/it]
12863it [5:51:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12864it [5:51:38, 1.40s/it]
12865it [5:51:39, 1.37s/it]
12866it [5:51:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12867it [5:51:42, 1.39s/it]
12868it [5:51:43, 1.37s/it]
12869it [5:51:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12870it [5:51:46, 1.38s/it]
12871it [5:51:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12872it [5:51:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12873it [5:51:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12874it [5:51:52, 1.39s/it]
12875it [5:51:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12876it [5:51:54, 1.39s/it]
12877it [5:51:56, 1.36s/it]
12878it [5:51:57, 1.34s/it]
12879it [5:51:58, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12880it [5:52:00, 1.35s/it]
12881it [5:52:01, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12882it [5:52:02, 1.38s/it]
12883it [5:52:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12884it [5:52:05, 1.38s/it]
12885it [5:52:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12886it [5:52:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12887it [5:52:10, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12888it [5:52:12, 1.60s/it]
12889it [5:52:13, 1.51s/it]
12890it [5:52:14, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12891it [5:52:16, 1.46s/it]
12892it [5:52:17, 1.41s/it]
12893it [5:52:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12894it [5:52:20, 1.40s/it]
12895it [5:52:21, 1.37s/it]
12896it [5:52:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12897it [5:52:25, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12898it [5:52:26, 1.57s/it]
12899it [5:52:27, 1.50s/it]
12900it [5:52:29, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12901it [5:52:30, 1.44s/it]
12902it [5:52:31, 1.41s/it]
12903it [5:52:33, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12904it [5:52:34, 1.40s/it]
12905it [5:52:36, 1.37s/it]
12906it [5:52:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12907it [5:52:38, 1.38s/it]
12908it [5:52:40, 1.36s/it]
12909it [5:52:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12910it [5:52:42, 1.38s/it]
12911it [5:52:44, 1.36s/it]
12912it [5:52:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12913it [5:52:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12914it [5:52:48, 1.40s/it]
12915it [5:52:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12916it [5:52:51, 1.43s/it]
12917it [5:52:52, 1.39s/it]
12918it [5:52:53, 1.37s/it]
12919it [5:52:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12920it [5:52:56, 1.39s/it]
12921it [5:52:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12922it [5:52:59, 1.41s/it]
12923it [5:53:00, 1.39s/it]
12924it [5:53:02, 1.38s/it]
12925it [5:53:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12926it [5:53:06, 1.97s/it]
12927it [5:53:08, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12928it [5:53:09, 1.69s/it]
12929it [5:53:11, 1.58s/it]
12930it [5:53:12, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12931it [5:53:13, 1.53s/it]
12932it [5:53:15, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12933it [5:53:16, 1.45s/it]
12934it [5:53:18, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12935it [5:53:19, 1.43s/it]
12936it [5:53:20, 1.42s/it]
12937it [5:53:22, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12938it [5:53:23, 1.40s/it]
12939it [5:53:24, 1.37s/it]
12940it [5:53:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12941it [5:53:27, 1.37s/it]
12942it [5:53:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12943it [5:53:30, 1.43s/it]
12944it [5:53:31, 1.39s/it]
12945it [5:53:33, 1.37s/it]
12946it [5:53:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12947it [5:53:35, 1.37s/it]
12948it [5:53:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12949it [5:53:38, 1.41s/it]
12950it [5:53:40, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12951it [5:53:41, 1.42s/it]
12952it [5:53:42, 1.39s/it]
12953it [5:53:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12954it [5:53:45, 1.40s/it]
12955it [5:53:47, 1.39s/it]
12956it [5:53:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12957it [5:53:49, 1.39s/it]
12958it [5:53:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12959it [5:53:52, 1.39s/it]
12960it [5:53:53, 1.37s/it]
12961it [5:53:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12962it [5:53:56, 1.47s/it]
12963it [5:53:58, 1.42s/it]
12964it [5:53:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12965it [5:54:01, 1.41s/it]
12966it [5:54:02, 1.39s/it]
12967it [5:54:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12968it [5:54:05, 1.42s/it]
12969it [5:54:06, 1.39s/it]
12970it [5:54:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12971it [5:54:09, 1.40s/it]
12972it [5:54:10, 1.37s/it]
12973it [5:54:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12974it [5:54:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12975it [5:54:14, 1.37s/it]
12976it [5:54:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12977it [5:54:17, 1.38s/it]
12978it [5:54:18, 1.36s/it]
12979it [5:54:20, 1.34s/it]
12980it [5:54:21, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12981it [5:54:22, 1.36s/it]
12982it [5:54:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12983it [5:54:26, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12984it [5:54:27, 1.50s/it]
12985it [5:54:28, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12986it [5:54:30, 1.47s/it]
12987it [5:54:31, 1.42s/it]
12988it [5:54:32, 1.38s/it]
12989it [5:54:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12990it [5:54:35, 1.40s/it]
12991it [5:54:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12992it [5:54:41, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12993it [5:54:43, 2.17s/it]
12994it [5:54:44, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12995it [5:54:46, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12996it [5:54:49, 2.28s/it]
12997it [5:54:51, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12998it [5:54:52, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12999it [5:54:54, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13000it [5:54:56, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13001it [5:54:57, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13002it [5:54:58, 1.63s/it]
13003it [5:55:00, 1.53s/it]
13004it [5:55:01, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13005it [5:55:03, 1.46s/it]
13006it [5:55:04, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13007it [5:55:05, 1.43s/it]
13008it [5:55:07, 1.40s/it]
13009it [5:55:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13010it [5:55:09, 1.39s/it]
13011it [5:55:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13012it [5:55:12, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13013it [5:55:14, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13014it [5:55:15, 1.45s/it]
13015it [5:55:17, 1.42s/it]
13016it [5:55:18, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13017it [5:55:19, 1.42s/it]
13018it [5:55:21, 1.38s/it]
13019it [5:55:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13020it [5:55:23, 1.39s/it]
13021it [5:55:25, 1.37s/it]
13022it [5:55:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13023it [5:55:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13024it [5:55:29, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13025it [5:55:31, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13026it [5:55:32, 1.55s/it]
13027it [5:55:34, 1.48s/it]
13028it [5:55:35, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13029it [5:55:37, 1.44s/it]
13030it [5:55:38, 1.40s/it]
13031it [5:55:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13032it [5:55:41, 1.39s/it]
13033it [5:55:42, 1.36s/it]
13034it [5:55:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13035it [5:55:45, 1.38s/it]
13036it [5:55:46, 1.37s/it]
13037it [5:55:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13038it [5:55:49, 1.39s/it]
13039it [5:55:50, 1.36s/it]
13040it [5:55:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13041it [5:55:53, 1.37s/it]
13042it [5:55:54, 1.35s/it]
13043it [5:55:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13044it [5:55:57, 1.36s/it]
13045it [5:55:58, 1.35s/it]
13046it [5:55:59, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13047it [5:56:01, 1.38s/it]
13048it [5:56:02, 1.36s/it]
13049it [5:56:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13050it [5:56:05, 1.37s/it]
13051it [5:56:06, 1.35s/it]
13052it [5:56:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13053it [5:56:09, 1.35s/it]
13054it [5:56:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13055it [5:56:12, 1.40s/it]
13056it [5:56:13, 1.37s/it]
13057it [5:56:14, 1.35s/it]
13058it [5:56:16, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13059it [5:56:17, 1.38s/it]
13060it [5:56:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13061it [5:56:20, 1.40s/it]
13062it [5:56:21, 1.37s/it]
13063it [5:56:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13064it [5:56:24, 1.41s/it]
13065it [5:56:25, 1.38s/it]
13066it [5:56:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13067it [5:56:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13068it [5:56:30, 1.40s/it]
13069it [5:56:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13070it [5:56:32, 1.39s/it]
13071it [5:56:34, 1.37s/it]
13072it [5:56:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13073it [5:56:37, 1.41s/it]
13074it [5:56:38, 1.37s/it]
13075it [5:56:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13076it [5:56:41, 1.41s/it]
13077it [5:56:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13078it [5:56:45, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13079it [5:56:46, 1.65s/it]
13080it [5:56:47, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13081it [5:56:49, 1.52s/it]
13082it [5:56:50, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13083it [5:56:52, 1.57s/it]
13084it [5:56:53, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13085it [5:56:55, 1.48s/it]
13086it [5:56:56, 1.42s/it]
13087it [5:56:57, 1.39s/it]
13088it [5:56:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13089it [5:57:00, 1.39s/it]
13090it [5:57:01, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13091it [5:57:03, 1.42s/it]
13092it [5:57:04, 1.38s/it]
13093it [5:57:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13094it [5:57:07, 1.39s/it]
13095it [5:57:08, 1.36s/it]
13096it [5:57:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13097it [5:57:11, 1.37s/it]
13098it [5:57:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13099it [5:57:14, 1.38s/it]
13100it [5:57:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13101it [5:57:17, 1.40s/it]
13102it [5:57:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13103it [5:57:19, 1.43s/it]
13104it [5:57:21, 1.39s/it]
13105it [5:57:22, 1.36s/it]
13106it [5:57:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13107it [5:57:25, 1.38s/it]
13108it [5:57:26, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13109it [5:57:30, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13110it [5:57:31, 1.91s/it]
13111it [5:57:33, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13112it [5:57:34, 1.68s/it]
13113it [5:57:36, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13114it [5:57:37, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13115it [5:57:40, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13116it [5:57:42, 1.91s/it]
13117it [5:57:43, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13118it [5:57:45, 1.67s/it]
13119it [5:57:46, 1.57s/it]
13120it [5:57:47, 1.51s/it]
13121it [5:57:49, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13122it [5:57:50, 1.44s/it]
13123it [5:57:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13124it [5:57:53, 1.43s/it]
13125it [5:57:54, 1.39s/it]
13126it [5:57:56, 1.36s/it]
13127it [5:57:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13128it [5:57:58, 1.36s/it]
13129it [5:58:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13130it [5:58:01, 1.39s/it]
13131it [5:58:02, 1.37s/it]
13132it [5:58:04, 1.34s/it]
13133it [5:58:05, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13134it [5:58:07, 1.39s/it]
13135it [5:58:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13136it [5:58:10, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13137it [5:58:11, 1.47s/it]
13138it [5:58:12, 1.42s/it]
13139it [5:58:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13140it [5:58:15, 1.41s/it]
13141it [5:58:16, 1.40s/it]
13142it [5:58:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13143it [5:58:19, 1.40s/it]
13144it [5:58:21, 1.38s/it]
13145it [5:58:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13146it [5:58:23, 1.40s/it]
13147it [5:58:25, 1.38s/it]
13148it [5:58:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13149it [5:58:28, 1.42s/it]
13150it [5:58:29, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13151it [5:58:31, 1.45s/it]
13152it [5:58:32, 1.41s/it]
13153it [5:58:33, 1.39s/it]
13154it [5:58:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13155it [5:58:36, 1.39s/it]
13156it [5:58:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13157it [5:58:39, 1.40s/it]
13158it [5:58:40, 1.38s/it]
13159it [5:58:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13160it [5:58:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13161it [5:58:46, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13162it [5:58:47, 1.72s/it]
13163it [5:58:48, 1.60s/it]
13164it [5:58:50, 1.51s/it]
13165it [5:58:51, 1.45s/it]
13166it [5:58:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13167it [5:58:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13168it [5:58:56, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13169it [5:58:58, 1.69s/it]
13170it [5:58:59, 1.58s/it]
13171it [5:59:00, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13172it [5:59:02, 1.48s/it]
13173it [5:59:03, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13174it [5:59:05, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13175it [5:59:06, 1.45s/it]
13176it [5:59:07, 1.41s/it]
13177it [5:59:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13178it [5:59:10, 1.40s/it]
13179it [5:59:12, 1.37s/it]
13180it [5:59:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13181it [5:59:14, 1.39s/it]
13182it [5:59:16, 1.37s/it]
13183it [5:59:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13184it [5:59:18, 1.39s/it]
13185it [5:59:20, 1.37s/it]
13186it [5:59:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13187it [5:59:22, 1.37s/it]
13188it [5:59:24, 1.35s/it]
13189it [5:59:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13190it [5:59:27, 1.39s/it]
13191it [5:59:28, 1.36s/it]
13192it [5:59:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13193it [5:59:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13194it [5:59:32, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13195it [5:59:34, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13196it [5:59:36, 1.55s/it]
13197it [5:59:37, 1.48s/it]
13198it [5:59:38, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13199it [5:59:40, 1.44s/it]
13200it [5:59:41, 1.39s/it]
13201it [5:59:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13202it [5:59:44, 1.43s/it]
13203it [5:59:45, 1.40s/it]
13204it [5:59:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13205it [5:59:48, 1.41s/it]
13206it [5:59:49, 1.39s/it]
13207it [5:59:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13208it [5:59:52, 1.42s/it]
13209it [5:59:53, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13210it [5:59:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13211it [5:59:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13212it [5:59:58, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13213it [6:00:00, 1.52s/it]
13214it [6:00:01, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13215it [6:00:02, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13216it [6:00:04, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13217it [6:00:09, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13218it [6:00:10, 2.15s/it]
13219it [6:00:11, 1.92s/it]
13220it [6:00:13, 1.74s/it]
13221it [6:00:14, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13222it [6:00:15, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13223it [6:00:17, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13224it [6:00:19, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13225it [6:00:20, 1.55s/it]
13226it [6:00:21, 1.47s/it]
13227it [6:00:23, 1.42s/it]
13228it [6:00:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13229it [6:00:25, 1.41s/it]
13230it [6:00:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13231it [6:00:28, 1.39s/it]
13232it [6:00:30, 1.36s/it]
13233it [6:00:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13234it [6:00:32, 1.37s/it]
13235it [6:00:34, 1.36s/it]
13236it [6:00:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13237it [6:00:36, 1.38s/it]
13238it [6:00:38, 1.37s/it]
13239it [6:00:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13240it [6:00:40, 1.37s/it]
13241it [6:00:42, 1.35s/it]
13242it [6:00:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13243it [6:00:45, 1.39s/it]
13244it [6:00:46, 1.38s/it]
13245it [6:00:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13246it [6:00:49, 1.42s/it]
13247it [6:00:50, 1.39s/it]
13248it [6:00:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13249it [6:00:53, 1.43s/it]
13250it [6:00:54, 1.39s/it]
13251it [6:00:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13252it [6:00:57, 1.40s/it]
13253it [6:00:58, 1.38s/it]
13254it [6:01:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13255it [6:01:01, 1.41s/it]
13256it [6:01:03, 1.39s/it]
13257it [6:01:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13258it [6:01:05, 1.42s/it]
13259it [6:01:07, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13260it [6:01:08, 1.43s/it]
13261it [6:01:10, 1.39s/it]
13262it [6:01:11, 1.36s/it]
13263it [6:01:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13264it [6:01:14, 1.39s/it]
13265it [6:01:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13266it [6:01:17, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13267it [6:01:18, 1.47s/it]
13268it [6:01:20, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13269it [6:01:21, 1.44s/it]
13270it [6:01:22, 1.40s/it]
13271it [6:01:24, 1.38s/it]
13272it [6:01:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13273it [6:01:26, 1.38s/it]
13274it [6:01:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13275it [6:01:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13276it [6:01:31, 1.40s/it]
13277it [6:01:32, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13278it [6:01:34, 1.45s/it]
13279it [6:01:35, 1.40s/it]
13280it [6:01:36, 1.37s/it]
13281it [6:01:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13282it [6:01:39, 1.37s/it]
13283it [6:01:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13284it [6:01:42, 1.38s/it]
13285it [6:01:43, 1.36s/it]
13286it [6:01:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13287it [6:01:46, 1.37s/it]
13288it [6:01:47, 1.35s/it]
13289it [6:01:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13290it [6:01:50, 1.40s/it]
13291it [6:01:51, 1.37s/it]
13292it [6:01:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13293it [6:01:54, 1.40s/it]
13294it [6:01:55, 1.37s/it]
13295it [6:01:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13296it [6:01:58, 1.39s/it]
13297it [6:01:59, 1.36s/it]
13298it [6:02:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13299it [6:02:02, 1.39s/it]
13300it [6:02:03, 1.37s/it]
13301it [6:02:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13302it [6:02:06, 1.38s/it]
13303it [6:02:07, 1.36s/it]
13304it [6:02:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13305it [6:02:10, 1.40s/it]
13306it [6:02:12, 1.39s/it]
13307it [6:02:13, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13308it [6:02:14, 1.41s/it]
13309it [6:02:16, 1.37s/it]
13310it [6:02:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13311it [6:02:19, 1.40s/it]
13312it [6:02:20, 1.37s/it]
13313it [6:02:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13314it [6:02:23, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13315it [6:02:25, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13316it [6:02:26, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13317it [6:02:30, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13318it [6:02:32, 2.15s/it]
13319it [6:02:34, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13320it [6:02:40, 3.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13321it [6:02:42, 2.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13322it [6:02:43, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13323it [6:02:45, 2.20s/it]
13324it [6:02:46, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13325it [6:02:50, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13326it [6:02:52, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13327it [6:02:53, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13328it [6:02:55, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13329it [6:02:57, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13330it [6:03:02, 2.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13331it [6:03:04, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13332it [6:03:06, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13333it [6:03:07, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13334it [6:03:11, 2.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13335it [6:03:13, 2.29s/it]
13336it [6:03:14, 2.01s/it]
13337it [6:03:15, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13338it [6:03:17, 1.71s/it]
13339it [6:03:18, 1.59s/it]
13340it [6:03:19, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13341it [6:03:21, 1.51s/it]
13342it [6:03:22, 1.46s/it]
13343it [6:03:24, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13344it [6:03:25, 1.43s/it]
13345it [6:03:26, 1.40s/it]
13346it [6:03:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13347it [6:03:29, 1.40s/it]
13348it [6:03:31, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13349it [6:03:34, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13350it [6:03:35, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13351it [6:03:37, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13352it [6:03:41, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13353it [6:03:43, 2.42s/it]
13354it [6:03:45, 2.09s/it]
13355it [6:03:46, 1.86s/it]
13356it [6:03:47, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13357it [6:03:49, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13358it [6:03:53, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13359it [6:03:55, 2.17s/it]
13360it [6:03:56, 1.91s/it]
13361it [6:03:57, 1.73s/it]
13362it [6:03:58, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13363it [6:04:00, 1.54s/it]
13364it [6:04:01, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13365it [6:04:03, 1.46s/it]
13366it [6:04:04, 1.43s/it]
13367it [6:04:05, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13368it [6:04:07, 1.44s/it]
13369it [6:04:08, 1.40s/it]
13370it [6:04:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13371it [6:04:11, 1.41s/it]
13372it [6:04:12, 1.38s/it]
13373it [6:04:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13374it [6:04:15, 1.39s/it]
13375it [6:04:16, 1.37s/it]
13376it [6:04:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13377it [6:04:19, 1.38s/it]
13378it [6:04:20, 1.37s/it]
13379it [6:04:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13380it [6:04:23, 1.39s/it]
13381it [6:04:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13382it [6:04:26, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13383it [6:04:27, 1.41s/it]
13384it [6:04:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13385it [6:04:32, 2.00s/it]
13386it [6:04:33, 1.79s/it]
13387it [6:04:35, 1.64s/it]
13388it [6:04:36, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13389it [6:04:38, 1.54s/it]
13390it [6:04:39, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13391it [6:04:43, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13392it [6:04:44, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13393it [6:04:45, 1.77s/it]
13394it [6:04:47, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13395it [6:04:48, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13396it [6:04:50, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13397it [6:04:55, 2.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13398it [6:04:56, 2.27s/it]
13399it [6:04:58, 1.98s/it]
13400it [6:04:59, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13401it [6:05:00, 1.70s/it]
13402it [6:05:02, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13403it [6:05:03, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13404it [6:05:05, 1.51s/it]
13405it [6:05:06, 1.46s/it]
13406it [6:05:07, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13407it [6:05:09, 1.44s/it]
13408it [6:05:10, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13409it [6:05:12, 1.43s/it]
13410it [6:05:13, 1.40s/it]
13411it [6:05:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13412it [6:05:16, 1.40s/it]
13413it [6:05:17, 1.37s/it]
13414it [6:05:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13415it [6:05:20, 1.42s/it]
13416it [6:05:21, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13417it [6:05:23, 1.42s/it]
13418it [6:05:24, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13419it [6:05:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13420it [6:05:29, 2.17s/it]
13421it [6:05:31, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13422it [6:05:32, 1.79s/it]
13423it [6:05:33, 1.65s/it]
13424it [6:05:35, 1.54s/it]
13425it [6:05:36, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13426it [6:05:37, 1.45s/it]
13427it [6:05:39, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13428it [6:05:40, 1.43s/it]
13429it [6:05:41, 1.39s/it]
13430it [6:05:43, 1.37s/it]
13431it [6:05:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13432it [6:05:46, 1.39s/it]
13433it [6:05:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13434it [6:05:48, 1.40s/it]
13435it [6:05:50, 1.37s/it]
13436it [6:05:51, 1.36s/it]
13437it [6:05:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13438it [6:05:54, 1.38s/it]
13439it [6:05:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13440it [6:05:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13441it [6:05:58, 1.39s/it]
13442it [6:05:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13443it [6:06:01, 1.42s/it]
13444it [6:06:02, 1.38s/it]
13445it [6:06:03, 1.37s/it]
13446it [6:06:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13447it [6:06:06, 1.39s/it]
13448it [6:06:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13449it [6:06:09, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13450it [6:06:10, 1.40s/it]
13451it [6:06:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13452it [6:06:13, 1.41s/it]
13453it [6:06:15, 1.38s/it]
13454it [6:06:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13455it [6:06:17, 1.38s/it]
13456it [6:06:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13457it [6:06:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13458it [6:06:21, 1.39s/it]
13459it [6:06:23, 1.37s/it]
13460it [6:06:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13461it [6:06:26, 1.41s/it]
13462it [6:06:27, 1.38s/it]
13463it [6:06:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13464it [6:06:30, 1.39s/it]
13465it [6:06:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13466it [6:06:32, 1.41s/it]
13467it [6:06:34, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13468it [6:06:35, 1.40s/it]
13469it [6:06:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13470it [6:06:38, 1.43s/it]
13471it [6:06:39, 1.40s/it]
13472it [6:06:41, 1.37s/it]
13473it [6:06:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13474it [6:06:44, 1.40s/it]
13475it [6:06:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13476it [6:06:46, 1.39s/it]
13477it [6:06:48, 1.37s/it]
13478it [6:06:49, 1.35s/it]
13479it [6:06:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13480it [6:06:52, 1.38s/it]
13481it [6:06:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13482it [6:06:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13483it [6:06:56, 1.39s/it]
13484it [6:06:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13485it [6:06:59, 1.41s/it]
13486it [6:07:00, 1.38s/it]
13487it [6:07:01, 1.35s/it]
13488it [6:07:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13489it [6:07:04, 1.38s/it]
13490it [6:07:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13491it [6:07:07, 1.42s/it]
13492it [6:07:08, 1.39s/it]
13493it [6:07:10, 1.37s/it]
13494it [6:07:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13495it [6:07:12, 1.38s/it]
13496it [6:07:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13497it [6:07:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13498it [6:07:17, 1.41s/it]
13499it [6:07:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13500it [6:07:22, 2.23s/it]
13501it [6:07:23, 1.96s/it]
13502it [6:07:25, 1.78s/it]
13503it [6:07:26, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13504it [6:07:28, 1.60s/it]
13505it [6:07:29, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13506it [6:07:30, 1.49s/it]
13507it [6:07:32, 1.44s/it]
13508it [6:07:33, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13509it [6:07:34, 1.43s/it]
13510it [6:07:36, 1.40s/it]
13511it [6:07:37, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13512it [6:07:39, 1.65s/it]
13513it [6:07:41, 1.56s/it]
13514it [6:07:42, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13515it [6:07:44, 1.50s/it]
13516it [6:07:45, 1.46s/it]
13517it [6:07:46, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13518it [6:07:49, 1.78s/it]
13519it [6:07:50, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13520it [6:07:52, 1.60s/it]
13521it [6:07:53, 1.51s/it]
13522it [6:07:54, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13523it [6:07:56, 1.46s/it]
13524it [6:07:57, 1.42s/it]
13525it [6:07:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13526it [6:08:00, 1.41s/it]
13527it [6:08:01, 1.38s/it]
13528it [6:08:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13529it [6:08:04, 1.40s/it]
13530it [6:08:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13531it [6:08:07, 1.54s/it]
13532it [6:08:09, 1.47s/it]
13533it [6:08:10, 1.42s/it]
13534it [6:08:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13535it [6:08:13, 1.40s/it]
13536it [6:08:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13537it [6:08:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13538it [6:08:17, 1.41s/it]
13539it [6:08:18, 1.38s/it]
13540it [6:08:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13541it [6:08:21, 1.41s/it]
13542it [6:08:22, 1.39s/it]
13543it [6:08:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13544it [6:08:25, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13545it [6:08:27, 1.49s/it]
13546it [6:08:28, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13547it [6:08:30, 1.45s/it]
13548it [6:08:31, 1.41s/it]
13549it [6:08:32, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13550it [6:08:34, 1.40s/it]
13551it [6:08:35, 1.37s/it]
13552it [6:08:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13553it [6:08:38, 1.38s/it]
13554it [6:08:39, 1.36s/it]
13555it [6:08:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13556it [6:08:42, 1.40s/it]
13557it [6:08:43, 1.39s/it]
13558it [6:08:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13559it [6:08:46, 1.41s/it]
13560it [6:08:48, 1.39s/it]
13561it [6:08:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13562it [6:08:50, 1.42s/it]
13563it [6:08:52, 1.39s/it]
13564it [6:08:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13565it [6:08:59, 2.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13566it [6:09:00, 2.33s/it]
13567it [6:09:02, 2.03s/it]
13568it [6:09:03, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13569it [6:09:04, 1.74s/it]
13570it [6:09:06, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13571it [6:09:07, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13572it [6:09:09, 1.53s/it]
13573it [6:09:10, 1.46s/it]
13574it [6:09:11, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13575it [6:09:13, 1.46s/it]
13576it [6:09:14, 1.43s/it]
13577it [6:09:16, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13578it [6:09:17, 1.42s/it]
13579it [6:09:18, 1.39s/it]
13580it [6:09:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13581it [6:09:21, 1.38s/it]
13582it [6:09:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13583it [6:09:33, 4.25s/it]
13584it [6:09:35, 3.38s/it]
13585it [6:09:36, 2.76s/it]
13586it [6:09:37, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13587it [6:09:39, 2.05s/it]
13588it [6:09:40, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13589it [6:09:42, 1.73s/it]
13590it [6:09:43, 1.61s/it]
13591it [6:09:44, 1.53s/it]
13592it [6:09:46, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13593it [6:09:47, 1.45s/it]
13594it [6:09:48, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13595it [6:09:50, 1.42s/it]
13596it [6:09:51, 1.39s/it]
13597it [6:09:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13598it [6:09:54, 1.40s/it]
13599it [6:09:55, 1.37s/it]
13600it [6:09:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13601it [6:09:58, 1.40s/it]
13602it [6:09:59, 1.37s/it]
13603it [6:10:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13604it [6:10:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13605it [6:10:03, 1.41s/it]
13606it [6:10:05, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13607it [6:10:06, 1.44s/it]
13608it [6:10:08, 1.40s/it]
13609it [6:10:09, 1.38s/it]
13610it [6:10:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13611it [6:10:13, 1.88s/it]
13612it [6:10:15, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13613it [6:10:23, 3.67s/it]
13614it [6:10:24, 2.96s/it]
13615it [6:10:26, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13616it [6:10:30, 3.09s/it]
13617it [6:10:31, 2.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13618it [6:10:33, 2.25s/it]
13619it [6:10:34, 1.98s/it]
13620it [6:10:36, 1.79s/it]
13621it [6:10:37, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13622it [6:10:38, 1.59s/it]
13623it [6:10:40, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13624it [6:10:42, 1.57s/it]
13625it [6:10:43, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13626it [6:10:44, 1.49s/it]
13627it [6:10:46, 1.44s/it]
13628it [6:10:47, 1.41s/it]
13629it [6:10:48, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13630it [6:10:50, 1.43s/it]
13631it [6:10:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13632it [6:10:53, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13633it [6:10:54, 1.45s/it]
13634it [6:10:55, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13635it [6:10:57, 1.43s/it]
13636it [6:10:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13637it [6:11:03, 2.37s/it]
13638it [6:11:04, 2.05s/it]
13639it [6:11:05, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13640it [6:11:10, 2.51s/it]
13641it [6:11:11, 2.15s/it]
13642it [6:11:12, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13643it [6:11:14, 1.78s/it]
13644it [6:11:15, 1.64s/it]
13645it [6:11:16, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13646it [6:11:18, 1.52s/it]
13647it [6:11:19, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13648it [6:11:21, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13649it [6:11:23, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13650it [6:11:24, 1.57s/it]
13651it [6:11:25, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13652it [6:11:27, 1.50s/it]
13653it [6:11:28, 1.45s/it]
13654it [6:11:30, 1.41s/it]
13655it [6:11:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13656it [6:11:32, 1.40s/it]
13657it [6:11:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13658it [6:11:35, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13659it [6:11:36, 1.41s/it]
13660it [6:11:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13661it [6:11:39, 1.41s/it]
13662it [6:11:41, 1.38s/it]
13663it [6:11:42, 1.36s/it]
13664it [6:11:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13665it [6:11:45, 1.37s/it]
13666it [6:11:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13667it [6:11:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13668it [6:11:49, 1.42s/it]
13669it [6:11:50, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13670it [6:11:52, 1.43s/it]
13671it [6:11:53, 1.39s/it]
13672it [6:11:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13673it [6:11:56, 1.40s/it]
13674it [6:11:57, 1.37s/it]
13675it [6:11:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13676it [6:12:00, 1.42s/it]
13677it [6:12:01, 1.38s/it]
13678it [6:12:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13679it [6:12:04, 1.40s/it]
13680it [6:12:05, 1.37s/it]
13681it [6:12:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13682it [6:12:08, 1.38s/it]
13683it [6:12:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13684it [6:12:11, 1.40s/it]
13685it [6:12:12, 1.38s/it]
13686it [6:12:14, 1.35s/it]
13687it [6:12:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13688it [6:12:16, 1.37s/it]
13689it [6:12:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13690it [6:12:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13691it [6:12:21, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13692it [6:12:22, 1.44s/it]
13693it [6:12:23, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13694it [6:12:25, 1.43s/it]
13695it [6:12:26, 1.40s/it]
13696it [6:12:28, 1.37s/it]
13697it [6:12:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13698it [6:12:33, 2.19s/it]
13699it [6:12:34, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13700it [6:12:36, 1.82s/it]
13701it [6:12:37, 1.67s/it]
13702it [6:12:38, 1.56s/it]
13703it [6:12:40, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13704it [6:12:41, 1.47s/it]
13705it [6:12:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13706it [6:12:44, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13707it [6:12:49, 2.46s/it]
13708it [6:12:50, 2.12s/it]
13709it [6:12:52, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13710it [6:12:53, 1.77s/it]
13711it [6:12:54, 1.63s/it]
13712it [6:12:56, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13713it [6:12:57, 1.51s/it]
13714it [6:12:58, 1.45s/it]
13715it [6:13:00, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13716it [6:13:01, 1.41s/it]
13717it [6:13:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13718it [6:13:04, 1.41s/it]
13719it [6:13:05, 1.37s/it]
13720it [6:13:07, 1.37s/it]
13721it [6:13:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13722it [6:13:09, 1.40s/it]
13723it [6:13:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13724it [6:13:12, 1.42s/it]
13725it [6:13:14, 1.39s/it]
13726it [6:13:15, 1.37s/it]
13727it [6:13:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13728it [6:13:18, 1.40s/it]
13729it [6:13:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13730it [6:13:22, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13731it [6:13:23, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13732it [6:13:25, 1.72s/it]
13733it [6:13:26, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13734it [6:13:28, 1.55s/it]
13735it [6:13:29, 1.48s/it]
13736it [6:13:30, 1.42s/it]
13737it [6:13:32, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13738it [6:13:33, 1.41s/it]
13739it [6:13:35, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13740it [6:13:36, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13741it [6:13:38, 1.48s/it]
13742it [6:13:39, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13743it [6:13:41, 1.47s/it]
13744it [6:13:42, 1.43s/it]
13745it [6:13:43, 1.41s/it]
13746it [6:13:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13747it [6:13:46, 1.44s/it]
13748it [6:13:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13749it [6:13:49, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13750it [6:13:51, 1.46s/it]
13751it [6:13:52, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13752it [6:13:53, 1.43s/it]
13753it [6:13:55, 1.40s/it]
13754it [6:13:56, 1.37s/it]
13755it [6:13:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13756it [6:13:59, 1.40s/it]
13757it [6:14:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13758it [6:14:03, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13759it [6:14:05, 1.81s/it]
13760it [6:14:06, 1.67s/it]
13761it [6:14:08, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13762it [6:14:09, 1.58s/it]
13763it [6:14:10, 1.50s/it]
13764it [6:14:12, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13765it [6:14:13, 1.44s/it]
13766it [6:14:15, 1.40s/it]
13767it [6:14:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13768it [6:14:17, 1.39s/it]
13769it [6:14:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13770it [6:14:20, 1.40s/it]
13771it [6:14:21, 1.37s/it]
13772it [6:14:23, 1.37s/it]
13773it [6:14:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13774it [6:14:26, 1.40s/it]
13775it [6:14:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13776it [6:14:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13777it [6:14:30, 1.39s/it]
13778it [6:14:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13779it [6:14:32, 1.38s/it]
13780it [6:14:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13781it [6:14:35, 1.39s/it]
13782it [6:14:36, 1.37s/it]
13783it [6:14:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13784it [6:14:39, 1.38s/it]
13785it [6:14:41, 1.36s/it]
13786it [6:14:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13787it [6:14:43, 1.37s/it]
13788it [6:14:45, 1.35s/it]
13789it [6:14:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13790it [6:14:47, 1.38s/it]
13791it [6:14:49, 1.36s/it]
13792it [6:14:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13793it [6:14:51, 1.36s/it]
13794it [6:14:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13795it [6:14:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13796it [6:14:56, 1.41s/it]
13797it [6:14:57, 1.38s/it]
13798it [6:14:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13799it [6:15:00, 1.38s/it]
13800it [6:15:01, 1.36s/it]
13801it [6:15:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13802it [6:15:04, 1.40s/it]
13803it [6:15:05, 1.40s/it]
13804it [6:15:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13805it [6:15:08, 1.41s/it]
13806it [6:15:09, 1.39s/it]
13807it [6:15:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13808it [6:15:12, 1.41s/it]
13809it [6:15:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13810it [6:15:15, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13811it [6:15:17, 1.43s/it]
13812it [6:15:18, 1.40s/it]
13813it [6:15:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13814it [6:15:21, 1.39s/it]
13815it [6:15:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13816it [6:15:23, 1.41s/it]
13817it [6:15:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13818it [6:15:26, 1.40s/it]
13819it [6:15:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13820it [6:15:29, 1.39s/it]
13821it [6:15:30, 1.37s/it]
13822it [6:15:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13823it [6:15:33, 1.39s/it]
13824it [6:15:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13825it [6:15:36, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13826it [6:15:37, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13827it [6:15:39, 1.46s/it]
13828it [6:15:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13829it [6:15:42, 1.43s/it]
13830it [6:15:43, 1.39s/it]
13831it [6:15:44, 1.36s/it]
13832it [6:15:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13833it [6:15:47, 1.39s/it]
13834it [6:15:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13835it [6:15:50, 1.42s/it]
13836it [6:15:51, 1.39s/it]
13837it [6:15:53, 1.37s/it]
13838it [6:15:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13839it [6:15:55, 1.40s/it]
13840it [6:15:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13841it [6:15:58, 1.42s/it]
13842it [6:16:00, 1.38s/it]
13843it [6:16:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13844it [6:16:03, 1.57s/it]
13845it [6:16:04, 1.51s/it]
13846it [6:16:06, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13847it [6:16:07, 1.47s/it]
13848it [6:16:08, 1.42s/it]
13849it [6:16:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13850it [6:16:11, 1.42s/it]
13851it [6:16:13, 1.39s/it]
13852it [6:16:14, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13853it [6:16:15, 1.42s/it]
13854it [6:16:17, 1.39s/it]
13855it [6:16:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13856it [6:16:20, 1.41s/it]
13857it [6:16:21, 1.39s/it]
13858it [6:16:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13859it [6:16:24, 1.40s/it]
13860it [6:16:25, 1.38s/it]
13861it [6:16:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13862it [6:16:28, 1.44s/it]
13863it [6:16:29, 1.40s/it]
13864it [6:16:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13865it [6:16:32, 1.41s/it]
13866it [6:16:33, 1.39s/it]
13867it [6:16:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13868it [6:16:36, 1.39s/it]
13869it [6:16:38, 1.37s/it]
13870it [6:16:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13871it [6:16:40, 1.37s/it]
13872it [6:16:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13873it [6:16:43, 1.46s/it]
13874it [6:16:45, 1.42s/it]
13875it [6:16:46, 1.38s/it]
13876it [6:16:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13877it [6:16:49, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13878it [6:16:51, 1.76s/it]
13879it [6:16:53, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13880it [6:16:54, 1.59s/it]
13881it [6:16:55, 1.51s/it]
13882it [6:16:57, 1.47s/it]
13883it [6:16:58, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13884it [6:17:00, 1.44s/it]
13885it [6:17:01, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13886it [6:17:02, 1.44s/it]
13887it [6:17:04, 1.40s/it]
13888it [6:17:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13889it [6:17:07, 1.40s/it]
13890it [6:17:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13891it [6:17:09, 1.40s/it]
13892it [6:17:11, 1.38s/it]
13893it [6:17:12, 1.35s/it]
13894it [6:17:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13895it [6:17:17, 2.19s/it]
13896it [6:17:19, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13897it [6:17:20, 1.78s/it]
13898it [6:17:21, 1.64s/it]
13899it [6:17:23, 1.54s/it]
13900it [6:17:24, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13901it [6:17:26, 1.48s/it]
13902it [6:17:27, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13903it [6:17:28, 1.44s/it]
13904it [6:17:30, 1.40s/it]
13905it [6:17:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13906it [6:17:33, 1.42s/it]
13907it [6:17:34, 1.39s/it]
13908it [6:17:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13909it [6:17:37, 1.40s/it]
13910it [6:17:38, 1.37s/it]
13911it [6:17:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13912it [6:17:41, 1.40s/it]
13913it [6:17:42, 1.37s/it]
13914it [6:17:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13915it [6:17:45, 1.37s/it]
13916it [6:17:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13917it [6:17:48, 1.38s/it]
13918it [6:17:49, 1.36s/it]
13919it [6:17:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13920it [6:17:52, 1.37s/it]
13921it [6:17:53, 1.35s/it]
13922it [6:17:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13923it [6:17:56, 1.36s/it]
13924it [6:17:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13925it [6:17:58, 1.37s/it]
13926it [6:18:00, 1.35s/it]
13927it [6:18:01, 1.34s/it]
13928it [6:18:02, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13929it [6:18:04, 1.35s/it]
13930it [6:18:05, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13931it [6:18:06, 1.36s/it]
13932it [6:18:08, 1.34s/it]
13933it [6:18:09, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13934it [6:18:10, 1.36s/it]
13935it [6:18:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13936it [6:18:13, 1.39s/it]
13937it [6:18:15, 1.37s/it]
13938it [6:18:16, 1.36s/it]
13939it [6:18:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13940it [6:18:19, 1.37s/it]
13941it [6:18:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13942it [6:18:21, 1.39s/it]
13943it [6:18:23, 1.36s/it]
13944it [6:18:24, 1.35s/it]
13945it [6:18:25, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13946it [6:18:27, 1.37s/it]
13947it [6:18:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13948it [6:18:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13949it [6:18:31, 1.41s/it]
13950it [6:18:32, 1.39s/it]
13951it [6:18:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13952it [6:18:35, 1.43s/it]
13953it [6:18:37, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13954it [6:18:38, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13955it [6:18:39, 1.43s/it]
13956it [6:18:41, 1.40s/it]
13957it [6:18:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13958it [6:18:47, 2.42s/it]
13959it [6:18:48, 2.09s/it]
13960it [6:18:50, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13961it [6:18:55, 2.89s/it]
13962it [6:18:56, 2.41s/it]
13963it [6:18:58, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13964it [6:19:01, 2.64s/it]
13965it [6:19:03, 2.24s/it]
13966it [6:19:04, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13967it [6:19:09, 2.89s/it]
13968it [6:19:11, 2.44s/it]
13969it [6:19:12, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13970it [6:19:15, 2.27s/it]
13971it [6:19:16, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13972it [6:19:18, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13973it [6:19:20, 1.95s/it]
13974it [6:19:21, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13975it [6:19:27, 3.11s/it]
13976it [6:19:29, 2.56s/it]
13977it [6:19:30, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13978it [6:19:35, 3.12s/it]
13979it [6:19:36, 2.58s/it]
13980it [6:19:38, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13981it [6:19:43, 3.20s/it]
13982it [6:19:45, 2.63s/it]
13983it [6:19:46, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13984it [6:19:48, 2.25s/it]
13985it [6:19:50, 1.98s/it]
13986it [6:19:51, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13987it [6:19:52, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13988it [6:19:54, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13989it [6:19:58, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13990it [6:19:59, 2.07s/it]
13991it [6:20:01, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13992it [6:20:02, 1.74s/it]
13993it [6:20:03, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13994it [6:20:05, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13995it [6:20:06, 1.53s/it]
13996it [6:20:08, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13997it [6:20:09, 1.49s/it]
13998it [6:20:10, 1.45s/it]
13999it [6:20:12, 1.41s/it]
14000it [6:20:13, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14001it [6:20:15, 1.39s/it]
14002it [6:20:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14003it [6:20:17, 1.38s/it]
14004it [6:20:19, 1.35s/it]
14005it [6:20:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14006it [6:20:21, 1.35s/it]
14007it [6:20:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14008it [6:20:24, 1.36s/it]
14009it [6:20:25, 1.35s/it]
14010it [6:20:27, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14011it [6:20:29, 1.60s/it]
14012it [6:20:30, 1.51s/it]
14013it [6:20:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14014it [6:20:33, 1.46s/it]
14015it [6:20:34, 1.42s/it]
14016it [6:20:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14017it [6:20:37, 1.42s/it]
14018it [6:20:38, 1.38s/it]
14019it [6:20:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14020it [6:20:41, 1.38s/it]
14021it [6:20:42, 1.35s/it]
14022it [6:20:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14023it [6:20:45, 1.38s/it]
14024it [6:20:46, 1.35s/it]
14025it [6:20:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14026it [6:20:49, 1.38s/it]
14027it [6:20:50, 1.36s/it]
14028it [6:20:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14029it [6:20:53, 1.36s/it]
14030it [6:20:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14031it [6:20:56, 1.39s/it]
14032it [6:20:57, 1.37s/it]
14033it [6:20:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14034it [6:21:00, 1.38s/it]
14035it [6:21:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14036it [6:21:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14037it [6:21:04, 1.38s/it]
14038it [6:21:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14039it [6:21:07, 1.37s/it]
14040it [6:21:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14041it [6:21:10, 1.39s/it]
14042it [6:21:11, 1.36s/it]
14043it [6:21:12, 1.34s/it]
14044it [6:21:14, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14045it [6:21:15, 1.38s/it]
14046it [6:21:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14047it [6:21:18, 1.39s/it]
14048it [6:21:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14049it [6:21:21, 1.39s/it]
14050it [6:21:22, 1.38s/it]
14051it [6:21:23, 1.36s/it]
14052it [6:21:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14053it [6:21:26, 1.37s/it]
14054it [6:21:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14055it [6:21:29, 1.40s/it]
14056it [6:21:30, 1.38s/it]
14057it [6:21:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14058it [6:21:33, 1.40s/it]
14059it [6:21:34, 1.37s/it]
14060it [6:21:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14061it [6:21:37, 1.41s/it]
14062it [6:21:38, 1.39s/it]
14063it [6:21:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14064it [6:21:42, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14065it [6:21:46, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14066it [6:21:48, 2.35s/it]
14067it [6:21:50, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14068it [6:21:51, 1.86s/it]
14069it [6:21:52, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14070it [6:21:54, 1.64s/it]
14071it [6:21:55, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14072it [6:21:57, 1.55s/it]
14073it [6:21:58, 1.48s/it]
14074it [6:21:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14075it [6:22:01, 1.43s/it]
14076it [6:22:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14077it [6:22:04, 1.42s/it]
14078it [6:22:05, 1.39s/it]
14079it [6:22:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14080it [6:22:08, 1.38s/it]
14081it [6:22:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14082it [6:22:11, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14083it [6:22:12, 1.45s/it]
14084it [6:22:13, 1.41s/it]
14085it [6:22:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14086it [6:22:16, 1.40s/it]
14087it [6:22:17, 1.38s/it]
14088it [6:22:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14089it [6:22:20, 1.40s/it]
14090it [6:22:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14091it [6:22:25, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14092it [6:22:27, 2.06s/it]
14093it [6:22:29, 1.84s/it]
14094it [6:22:30, 1.68s/it]
14095it [6:22:31, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14096it [6:22:33, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14097it [6:22:34, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14098it [6:22:36, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14099it [6:22:37, 1.52s/it]
14100it [6:22:38, 1.47s/it]
14101it [6:22:40, 1.43s/it]
14102it [6:22:41, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14103it [6:22:43, 1.40s/it]
14104it [6:22:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14105it [6:22:45, 1.40s/it]
14106it [6:22:47, 1.37s/it]
14107it [6:22:48, 1.36s/it]
14108it [6:22:49, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14109it [6:22:51, 1.37s/it]
14110it [6:22:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14111it [6:22:53, 1.40s/it]
14112it [6:22:55, 1.37s/it]
14113it [6:22:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14114it [6:22:58, 1.40s/it]
14115it [6:22:59, 1.37s/it]
14116it [6:23:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14117it [6:23:02, 1.40s/it]
14118it [6:23:03, 1.38s/it]
14119it [6:23:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14120it [6:23:06, 1.38s/it]
14121it [6:23:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14122it [6:23:09, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14123it [6:23:10, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14124it [6:23:12, 1.50s/it]
14125it [6:23:13, 1.43s/it]
14126it [6:23:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14127it [6:23:16, 1.41s/it]
14128it [6:23:17, 1.38s/it]
14129it [6:23:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14130it [6:23:20, 1.42s/it]
14131it [6:23:21, 1.39s/it]
14132it [6:23:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14133it [6:23:24, 1.40s/it]
14134it [6:23:25, 1.37s/it]
14135it [6:23:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14136it [6:23:28, 1.38s/it]
14137it [6:23:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14138it [6:23:32, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14139it [6:23:33, 1.58s/it]
14140it [6:23:35, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14141it [6:23:36, 1.51s/it]
14142it [6:23:37, 1.47s/it]
14143it [6:23:39, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14144it [6:23:40, 1.47s/it]
14145it [6:23:42, 1.42s/it]
14146it [6:23:43, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14147it [6:23:46, 1.85s/it]
14148it [6:23:47, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14149it [6:23:49, 1.61s/it]
14150it [6:23:50, 1.53s/it]
14151it [6:23:51, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14152it [6:23:53, 1.46s/it]
14153it [6:23:54, 1.42s/it]
14154it [6:23:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14155it [6:23:57, 1.43s/it]
14156it [6:23:58, 1.39s/it]
14157it [6:24:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14158it [6:24:03, 2.07s/it]
14159it [6:24:05, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14160it [6:24:07, 2.06s/it]
14161it [6:24:08, 1.83s/it]
14162it [6:24:10, 1.68s/it]
14163it [6:24:11, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14164it [6:24:13, 1.54s/it]
14165it [6:24:14, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14166it [6:24:20, 2.86s/it]
14167it [6:24:21, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14168it [6:24:23, 2.12s/it]
14169it [6:24:24, 1.87s/it]
14170it [6:24:25, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14171it [6:24:27, 1.64s/it]
14172it [6:24:28, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14173it [6:24:30, 1.52s/it]
14174it [6:24:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14175it [6:24:32, 1.47s/it]
14176it [6:24:34, 1.41s/it]
14177it [6:24:35, 1.39s/it]
14178it [6:24:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14179it [6:24:38, 1.39s/it]
14180it [6:24:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14181it [6:24:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14182it [6:24:42, 1.37s/it]
14183it [6:24:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14184it [6:24:44, 1.36s/it]
14185it [6:24:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14186it [6:24:47, 1.40s/it]
14187it [6:24:49, 1.38s/it]
14188it [6:24:50, 1.36s/it]
14189it [6:24:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14190it [6:24:53, 1.36s/it]
14191it [6:24:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14192it [6:24:56, 1.41s/it]
14193it [6:24:57, 1.38s/it]
14194it [6:24:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14195it [6:25:00, 1.39s/it]
14196it [6:25:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14197it [6:25:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14198it [6:25:04, 1.40s/it]
14199it [6:25:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14200it [6:25:07, 1.42s/it]
14201it [6:25:08, 1.39s/it]
14202it [6:25:09, 1.37s/it]
14203it [6:25:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14204it [6:25:12, 1.38s/it]
14205it [6:25:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14206it [6:25:15, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14207it [6:25:17, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14208it [6:25:18, 1.53s/it]
14209it [6:25:20, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14210it [6:25:21, 1.49s/it]
14211it [6:25:22, 1.43s/it]
14212it [6:25:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14213it [6:25:25, 1.41s/it]
14214it [6:25:26, 1.38s/it]
14215it [6:25:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14216it [6:25:29, 1.39s/it]
14217it [6:25:31, 1.37s/it]
14218it [6:25:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14219it [6:25:33, 1.41s/it]
14220it [6:25:35, 1.37s/it]
14221it [6:25:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14222it [6:25:38, 1.40s/it]
14223it [6:25:39, 1.37s/it]
14224it [6:25:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14225it [6:25:41, 1.35s/it]
14226it [6:25:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14227it [6:25:44, 1.38s/it]
14228it [6:25:46, 1.36s/it]
14229it [6:25:47, 1.34s/it]
14230it [6:25:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14231it [6:25:50, 1.38s/it]
14232it [6:25:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14233it [6:25:52, 1.40s/it]
14234it [6:25:54, 1.38s/it]
14235it [6:25:55, 1.36s/it]
14236it [6:25:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14237it [6:25:58, 1.39s/it]
14238it [6:25:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14239it [6:26:01, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14240it [6:26:02, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14241it [6:26:06, 2.16s/it]
14242it [6:26:07, 1.90s/it]
14243it [6:26:09, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14244it [6:26:10, 1.64s/it]
14245it [6:26:12, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14246it [6:26:13, 1.53s/it]
14247it [6:26:14, 1.46s/it]
14248it [6:26:16, 1.42s/it]
14249it [6:26:17, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14250it [6:26:19, 1.43s/it]
14251it [6:26:20, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14252it [6:26:22, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14253it [6:26:23, 1.58s/it]
14254it [6:26:25, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14255it [6:26:26, 1.54s/it]
14256it [6:26:28, 1.50s/it]
14257it [6:26:29, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14258it [6:26:32, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14259it [6:26:33, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14260it [6:26:35, 1.61s/it]
14261it [6:26:36, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14262it [6:26:37, 1.52s/it]
14263it [6:26:39, 1.46s/it]
14264it [6:26:40, 1.43s/it]
14265it [6:26:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14266it [6:26:43, 1.41s/it]
14267it [6:26:44, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14268it [6:26:46, 1.58s/it]
14269it [6:26:48, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14270it [6:26:49, 1.49s/it]
14271it [6:26:50, 1.44s/it]
14272it [6:26:52, 1.40s/it]
14273it [6:26:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14274it [6:26:54, 1.39s/it]
14275it [6:26:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14276it [6:26:57, 1.39s/it]
14277it [6:26:58, 1.37s/it]
14278it [6:27:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14279it [6:27:01, 1.37s/it]
14280it [6:27:03, 1.36s/it]
14281it [6:27:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14282it [6:27:05, 1.40s/it]
14283it [6:27:07, 1.37s/it]
14284it [6:27:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14285it [6:27:14, 2.62s/it]
14286it [6:27:15, 2.22s/it]
14287it [6:27:16, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14288it [6:27:18, 1.79s/it]
14289it [6:27:19, 1.64s/it]
14290it [6:27:20, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14291it [6:27:22, 1.51s/it]
14292it [6:27:23, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14293it [6:27:24, 1.45s/it]
14294it [6:27:26, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14295it [6:27:27, 1.43s/it]
14296it [6:27:28, 1.39s/it]
14297it [6:27:30, 1.36s/it]
14298it [6:27:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14299it [6:27:33, 1.39s/it]
14300it [6:27:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14301it [6:27:35, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14302it [6:27:37, 1.44s/it]
14303it [6:27:38, 1.40s/it]
14304it [6:27:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14305it [6:27:41, 1.39s/it]
14306it [6:27:42, 1.36s/it]
14307it [6:27:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14308it [6:27:45, 1.38s/it]
14309it [6:27:46, 1.36s/it]
14310it [6:27:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14311it [6:27:49, 1.37s/it]
14312it [6:27:50, 1.36s/it]
14313it [6:27:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14314it [6:27:53, 1.39s/it]
14315it [6:27:55, 1.36s/it]
14316it [6:27:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14317it [6:27:57, 1.39s/it]
14318it [6:27:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14319it [6:28:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14320it [6:28:01, 1.39s/it]
14321it [6:28:03, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14322it [6:28:04, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14323it [6:28:06, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14324it [6:28:07, 1.43s/it]
14325it [6:28:09, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14326it [6:28:10, 1.41s/it]
14327it [6:28:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14328it [6:28:13, 1.42s/it]
14329it [6:28:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14330it [6:28:16, 1.41s/it]
14331it [6:28:17, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14332it [6:28:19, 1.46s/it]
14333it [6:28:20, 1.41s/it]
14334it [6:28:21, 1.38s/it]
14335it [6:28:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14336it [6:28:25, 1.57s/it]
14337it [6:28:26, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14338it [6:28:29, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14339it [6:28:30, 1.76s/it]
14340it [6:28:31, 1.63s/it]
14341it [6:28:33, 1.53s/it]
14342it [6:28:34, 1.46s/it]
14343it [6:28:35, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14344it [6:28:37, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14345it [6:28:40, 1.99s/it]
14346it [6:28:41, 1.78s/it]
14347it [6:28:43, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14348it [6:28:44, 1.58s/it]
14349it [6:28:45, 1.50s/it]
14350it [6:28:47, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14351it [6:28:48, 1.44s/it]
14352it [6:28:49, 1.40s/it]
14353it [6:28:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14354it [6:28:52, 1.41s/it]
14355it [6:28:54, 1.39s/it]
14356it [6:28:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14357it [6:28:56, 1.39s/it]
14358it [6:28:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14359it [6:28:59, 1.40s/it]
14360it [6:29:00, 1.37s/it]
14361it [6:29:02, 1.36s/it]
14362it [6:29:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14363it [6:29:05, 1.39s/it]
14364it [6:29:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14365it [6:29:10, 2.14s/it]
14366it [6:29:11, 1.91s/it]
14367it [6:29:13, 1.72s/it]
14368it [6:29:14, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14369it [6:29:15, 1.57s/it]
14370it [6:29:17, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14371it [6:29:18, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14372it [6:29:21, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14373it [6:29:24, 2.28s/it]
14374it [6:29:25, 2.01s/it]
14375it [6:29:27, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14376it [6:29:28, 1.71s/it]
14377it [6:29:30, 1.59s/it]
14378it [6:29:31, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14379it [6:29:32, 1.49s/it]
14380it [6:29:34, 1.43s/it]
14381it [6:29:35, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14382it [6:29:36, 1.40s/it]
14383it [6:29:38, 1.38s/it]
14384it [6:29:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14385it [6:29:40, 1.38s/it]
14386it [6:29:42, 1.36s/it]
14387it [6:29:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14388it [6:29:45, 1.41s/it]
14389it [6:29:46, 1.38s/it]
14390it [6:29:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14391it [6:29:49, 1.40s/it]
14392it [6:29:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14393it [6:29:53, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14394it [6:29:56, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14395it [6:29:57, 1.95s/it]
14396it [6:29:59, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14397it [6:30:00, 1.68s/it]
14398it [6:30:02, 1.58s/it]
14399it [6:30:03, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14400it [6:30:04, 1.51s/it]
14401it [6:30:06, 1.44s/it]
14402it [6:30:07, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14403it [6:30:09, 1.43s/it]
14404it [6:30:10, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14405it [6:30:12, 1.57s/it]
14406it [6:30:13, 1.50s/it]
14407it [6:30:14, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14408it [6:30:16, 1.45s/it]
14409it [6:30:17, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14410it [6:30:19, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14411it [6:30:20, 1.44s/it]
14412it [6:30:22, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14413it [6:30:23, 1.44s/it]
14414it [6:30:24, 1.39s/it]
14415it [6:30:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14416it [6:30:27, 1.44s/it]
14417it [6:30:29, 1.41s/it]
14418it [6:30:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14419it [6:30:31, 1.42s/it]
14420it [6:30:33, 1.39s/it]
14421it [6:30:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14422it [6:30:36, 1.41s/it]
14423it [6:30:37, 1.38s/it]
14424it [6:30:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14425it [6:30:40, 1.42s/it]
14426it [6:30:41, 1.41s/it]
14427it [6:30:42, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14428it [6:30:44, 1.42s/it]
14429it [6:30:45, 1.40s/it]
14430it [6:30:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14431it [6:30:48, 1.41s/it]
14432it [6:30:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14433it [6:30:51, 1.41s/it]
14434it [6:30:52, 1.38s/it]
14435it [6:30:54, 1.36s/it]
14436it [6:30:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14437it [6:30:56, 1.38s/it]
14438it [6:30:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14439it [6:30:59, 1.39s/it]
14440it [6:31:00, 1.37s/it]
14441it [6:31:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14442it [6:31:04, 1.51s/it]
14443it [6:31:05, 1.45s/it]
14444it [6:31:06, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14445it [6:31:08, 1.46s/it]
14446it [6:31:09, 1.42s/it]
14447it [6:31:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14448it [6:31:12, 1.41s/it]
14449it [6:31:13, 1.38s/it]
14450it [6:31:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14451it [6:31:16, 1.39s/it]
14452it [6:31:17, 1.37s/it]
14453it [6:31:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14454it [6:31:20, 1.39s/it]
14455it [6:31:21, 1.36s/it]
14456it [6:31:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14457it [6:31:24, 1.38s/it]
14458it [6:31:25, 1.35s/it]
14459it [6:31:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14460it [6:31:28, 1.38s/it]
14461it [6:31:30, 1.36s/it]
14462it [6:31:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14463it [6:31:32, 1.38s/it]
14464it [6:31:34, 1.37s/it]
14465it [6:31:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14466it [6:31:36, 1.39s/it]
14467it [6:31:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14468it [6:31:40, 1.49s/it]
14469it [6:31:41, 1.45s/it]
14470it [6:31:42, 1.40s/it]
14471it [6:31:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14472it [6:31:45, 1.39s/it]
14473it [6:31:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14474it [6:31:48, 1.40s/it]
14475it [6:31:49, 1.37s/it]
14476it [6:31:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14477it [6:31:52, 1.38s/it]
14478it [6:31:53, 1.35s/it]
14479it [6:31:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14480it [6:31:56, 1.37s/it]
14481it [6:31:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14482it [6:31:59, 1.39s/it]
14483it [6:32:00, 1.37s/it]
14484it [6:32:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14485it [6:32:03, 1.37s/it]
14486it [6:32:04, 1.36s/it]
14487it [6:32:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14488it [6:32:07, 1.36s/it]
14489it [6:32:08, 1.35s/it]
14490it [6:32:09, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14491it [6:32:11, 1.36s/it]
14492it [6:32:12, 1.34s/it]
14493it [6:32:13, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14494it [6:32:15, 1.35s/it]
14495it [6:32:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14496it [6:32:18, 1.43s/it]
14497it [6:32:19, 1.39s/it]
14498it [6:32:20, 1.36s/it]
14499it [6:32:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14500it [6:32:23, 1.37s/it]
14501it [6:32:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14502it [6:32:26, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14503it [6:32:28, 1.49s/it]
14504it [6:32:29, 1.44s/it]
14505it [6:32:30, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14506it [6:32:32, 1.44s/it]
14507it [6:32:33, 1.40s/it]
14508it [6:32:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14509it [6:32:36, 1.40s/it]
14510it [6:32:37, 1.38s/it]
14511it [6:32:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14512it [6:32:40, 1.49s/it]
14513it [6:32:42, 1.43s/it]
14514it [6:32:43, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14515it [6:32:44, 1.44s/it]
14516it [6:32:46, 1.42s/it]
14517it [6:32:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14518it [6:32:49, 1.41s/it]
14519it [6:32:50, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14520it [6:32:52, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14521it [6:32:53, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14522it [6:32:56, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14523it [6:32:57, 1.68s/it]
14524it [6:32:58, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14525it [6:33:00, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14526it [6:33:01, 1.54s/it]
14527it [6:33:03, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14528it [6:33:04, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14529it [6:33:06, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14530it [6:33:07, 1.45s/it]
14531it [6:33:08, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14532it [6:33:10, 1.45s/it]
14533it [6:33:11, 1.41s/it]
14534it [6:33:13, 1.38s/it]
14535it [6:33:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14536it [6:33:15, 1.38s/it]
14537it [6:33:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14538it [6:33:19, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14539it [6:33:20, 1.58s/it]
14540it [6:33:22, 1.51s/it]
14541it [6:33:23, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14542it [6:33:27, 2.31s/it]
14543it [6:33:29, 2.01s/it]
14544it [6:33:30, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14545it [6:33:34, 2.55s/it]
14546it [6:33:36, 2.17s/it]
14547it [6:33:37, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14548it [6:33:38, 1.78s/it]
14549it [6:33:40, 1.63s/it]
14550it [6:33:41, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14551it [6:33:42, 1.53s/it]
14552it [6:33:44, 1.46s/it]
14553it [6:33:45, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14554it [6:33:47, 1.45s/it]
14555it [6:33:48, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14556it [6:33:49, 1.43s/it]
14557it [6:33:51, 1.39s/it]
14558it [6:33:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14559it [6:33:53, 1.39s/it]
14560it [6:33:55, 1.36s/it]
14561it [6:33:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14562it [6:33:57, 1.38s/it]
14563it [6:33:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14564it [6:34:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14565it [6:34:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14566it [6:34:03, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14567it [6:34:05, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14568it [6:34:07, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14569it [6:34:08, 1.57s/it]
14570it [6:34:10, 1.50s/it]
14571it [6:34:11, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14572it [6:34:12, 1.45s/it]
14573it [6:34:14, 1.41s/it]
14574it [6:34:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14575it [6:34:16, 1.40s/it]
14576it [6:34:18, 1.37s/it]
14577it [6:34:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14578it [6:34:20, 1.37s/it]
14579it [6:34:22, 1.36s/it]
14580it [6:34:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14581it [6:34:25, 1.37s/it]
14582it [6:34:26, 1.36s/it]
14583it [6:34:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14584it [6:34:29, 1.38s/it]
14585it [6:34:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14586it [6:34:31, 1.42s/it]
14587it [6:34:33, 1.38s/it]
14588it [6:34:34, 1.36s/it]
14589it [6:34:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14590it [6:34:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14591it [6:34:40, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14592it [6:34:41, 1.70s/it]
14593it [6:34:42, 1.59s/it]
14594it [6:34:44, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14595it [6:34:45, 1.52s/it]
14596it [6:34:47, 1.46s/it]
14597it [6:34:48, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14598it [6:34:50, 1.49s/it]
14599it [6:34:51, 1.45s/it]
14600it [6:34:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14601it [6:34:54, 1.43s/it]
14602it [6:34:55, 1.39s/it]
14603it [6:34:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14604it [6:34:58, 1.38s/it]
14605it [6:34:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14606it [6:35:01, 1.38s/it]
14607it [6:35:02, 1.36s/it]
14608it [6:35:03, 1.36s/it]
14609it [6:35:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14610it [6:35:06, 1.38s/it]
14611it [6:35:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14612it [6:35:09, 1.38s/it]
14613it [6:35:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14614it [6:35:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14615it [6:35:13, 1.39s/it]
14616it [6:35:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14617it [6:35:16, 1.39s/it]
14618it [6:35:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14619it [6:35:18, 1.39s/it]
14620it [6:35:20, 1.36s/it]
14621it [6:35:21, 1.35s/it]
14622it [6:35:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14623it [6:35:24, 1.46s/it]
14624it [6:35:25, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14625it [6:35:27, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14626it [6:35:28, 1.46s/it]
14627it [6:35:30, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14628it [6:35:31, 1.43s/it]
14629it [6:35:32, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14630it [6:35:34, 1.40s/it]
14631it [6:35:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14632it [6:35:37, 1.40s/it]
14633it [6:35:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14634it [6:35:40, 1.50s/it]
14635it [6:35:41, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14636it [6:35:43, 1.50s/it]
14637it [6:35:44, 1.46s/it]
14638it [6:35:45, 1.42s/it]
14639it [6:35:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14640it [6:35:51, 2.34s/it]
14641it [6:35:53, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14642it [6:35:58, 3.17s/it]
14643it [6:36:00, 2.61s/it]
14644it [6:36:01, 2.22s/it]
14645it [6:36:02, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14646it [6:36:07, 2.64s/it]
14647it [6:36:08, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14648it [6:36:09, 2.02s/it]
14649it [6:36:11, 1.80s/it]
14650it [6:36:12, 1.65s/it]
14651it [6:36:13, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14652it [6:36:15, 1.54s/it]
14653it [6:36:16, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14654it [6:36:18, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14655it [6:36:19, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14656it [6:36:20, 1.45s/it]
14657it [6:36:22, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14658it [6:36:23, 1.44s/it]
14659it [6:36:25, 1.42s/it]
14660it [6:36:26, 1.39s/it]
14661it [6:36:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14662it [6:36:29, 1.37s/it]
14663it [6:36:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14664it [6:36:31, 1.40s/it]
14665it [6:36:33, 1.37s/it]
14666it [6:36:34, 1.35s/it]
14667it [6:36:35, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14668it [6:36:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14669it [6:36:38, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14670it [6:36:40, 1.45s/it]
14671it [6:36:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14672it [6:36:43, 1.43s/it]
14673it [6:36:44, 1.39s/it]
14674it [6:36:45, 1.37s/it]
14675it [6:36:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14676it [6:36:48, 1.37s/it]
14677it [6:36:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14678it [6:36:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14679it [6:36:52, 1.39s/it]
14680it [6:36:53, 1.36s/it]
14681it [6:36:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14682it [6:36:56, 1.37s/it]
14683it [6:36:57, 1.35s/it]
14684it [6:36:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14685it [6:37:00, 1.38s/it]
14686it [6:37:02, 1.36s/it]
14687it [6:37:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14688it [6:37:04, 1.37s/it]
14689it [6:37:06, 1.35s/it]
14690it [6:37:07, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14691it [6:37:08, 1.38s/it]
14692it [6:37:10, 1.35s/it]
14693it [6:37:11, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14694it [6:37:12, 1.35s/it]
14695it [6:37:14, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14696it [6:37:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14697it [6:37:17, 1.41s/it]
14698it [6:37:18, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14699it [6:37:19, 1.42s/it]
14700it [6:37:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14701it [6:37:22, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14702it [6:37:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14703it [6:37:25, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14704it [6:37:27, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14705it [6:37:29, 1.60s/it]
14706it [6:37:30, 1.51s/it]
14707it [6:37:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14708it [6:37:33, 1.45s/it]
14709it [6:37:34, 1.42s/it]
14710it [6:37:35, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14711it [6:37:37, 1.43s/it]
14712it [6:37:38, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14713it [6:37:40, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14714it [6:37:41, 1.43s/it]
14715it [6:37:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14716it [6:37:44, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14717it [6:37:46, 1.44s/it]
14718it [6:37:47, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14719it [6:37:48, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14720it [6:37:50, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14721it [6:37:52, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14722it [6:37:54, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14723it [6:37:55, 1.57s/it]
14724it [6:37:56, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14725it [6:37:58, 1.49s/it]
14726it [6:37:59, 1.44s/it]
14727it [6:38:01, 1.39s/it]
14728it [6:38:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14729it [6:38:07, 2.44s/it]
14730it [6:38:08, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14731it [6:38:10, 1.95s/it]
14732it [6:38:11, 1.76s/it]
14733it [6:38:12, 1.61s/it]
14734it [6:38:14, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14735it [6:38:16, 1.90s/it]
14736it [6:38:18, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14737it [6:38:23, 2.71s/it]
14738it [6:38:24, 2.29s/it]
14739it [6:38:25, 2.00s/it]
14740it [6:38:27, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14741it [6:38:28, 1.68s/it]
14742it [6:38:29, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14743it [6:38:31, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14744it [6:38:32, 1.52s/it]
14745it [6:38:34, 1.45s/it]
14746it [6:38:35, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14747it [6:38:36, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14748it [6:38:39, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14749it [6:38:41, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14750it [6:38:43, 1.87s/it]
14751it [6:38:44, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14752it [6:38:46, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14753it [6:38:47, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14754it [6:38:49, 1.53s/it]
14755it [6:38:50, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14756it [6:38:51, 1.48s/it]
14757it [6:38:53, 1.43s/it]
14758it [6:38:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14759it [6:38:55, 1.41s/it]
14760it [6:38:57, 1.38s/it]
14761it [6:38:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14762it [6:39:00, 1.41s/it]
14763it [6:39:01, 1.38s/it]
14764it [6:39:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14765it [6:39:04, 1.37s/it]
14766it [6:39:05, 1.35s/it]
14767it [6:39:06, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14768it [6:39:08, 1.36s/it]
14769it [6:39:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14770it [6:39:10, 1.38s/it]
14771it [6:39:12, 1.36s/it]
14772it [6:39:13, 1.34s/it]
14773it [6:39:14, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14774it [6:39:16, 1.37s/it]
14775it [6:39:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14776it [6:39:19, 1.42s/it]
14777it [6:39:20, 1.39s/it]
14778it [6:39:21, 1.36s/it]
14779it [6:39:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14780it [6:39:24, 1.37s/it]
14781it [6:39:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14782it [6:39:27, 1.40s/it]
14783it [6:39:28, 1.38s/it]
14784it [6:39:29, 1.35s/it]
14785it [6:39:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14786it [6:39:32, 1.38s/it]
14787it [6:39:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14788it [6:39:35, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14789it [6:39:37, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14790it [6:39:38, 1.43s/it]
14791it [6:39:39, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14792it [6:39:41, 1.41s/it]
14793it [6:39:42, 1.38s/it]
14794it [6:39:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14795it [6:39:45, 1.39s/it]
14796it [6:39:46, 1.37s/it]
14797it [6:39:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14798it [6:39:49, 1.37s/it]
14799it [6:39:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14800it [6:39:52, 1.48s/it]
14801it [6:39:53, 1.43s/it]
14802it [6:39:55, 1.40s/it]
14803it [6:39:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14804it [6:39:57, 1.40s/it]
14805it [6:39:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14806it [6:40:00, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14807it [6:40:02, 1.44s/it]
14808it [6:40:03, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14809it [6:40:05, 1.42s/it]
14810it [6:40:06, 1.39s/it]
14811it [6:40:07, 1.36s/it]
14812it [6:40:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14813it [6:40:10, 1.36s/it]
14814it [6:40:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14815it [6:40:13, 1.38s/it]
14816it [6:40:14, 1.36s/it]
14817it [6:40:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14818it [6:40:17, 1.38s/it]
14819it [6:40:18, 1.35s/it]
14820it [6:40:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14821it [6:40:21, 1.38s/it]
14822it [6:40:22, 1.36s/it]
14823it [6:40:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14824it [6:40:25, 1.40s/it]
14825it [6:40:26, 1.38s/it]
14826it [6:40:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14827it [6:40:29, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14828it [6:40:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14829it [6:40:33, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14830it [6:40:34, 1.60s/it]
14831it [6:40:36, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14832it [6:40:37, 1.51s/it]
14833it [6:40:38, 1.45s/it]
14834it [6:40:40, 1.40s/it]
14835it [6:40:41, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14836it [6:40:42, 1.38s/it]
14837it [6:40:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14838it [6:40:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14839it [6:40:47, 1.39s/it]
14840it [6:40:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14841it [6:40:49, 1.39s/it]
14842it [6:40:51, 1.37s/it]
14843it [6:40:52, 1.35s/it]
14844it [6:40:53, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14845it [6:40:55, 1.39s/it]
14846it [6:40:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14847it [6:40:58, 1.40s/it]
14848it [6:40:59, 1.38s/it]
14849it [6:41:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14850it [6:41:02, 1.41s/it]
14851it [6:41:03, 1.38s/it]
14852it [6:41:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14853it [6:41:06, 1.39s/it]
14854it [6:41:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14855it [6:41:09, 1.40s/it]
14856it [6:41:10, 1.37s/it]
14857it [6:41:11, 1.35s/it]
14858it [6:41:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14859it [6:41:14, 1.38s/it]
14860it [6:41:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14861it [6:41:17, 1.40s/it]
14862it [6:41:18, 1.37s/it]
14863it [6:41:19, 1.35s/it]
14864it [6:41:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14865it [6:41:22, 1.37s/it]
14866it [6:41:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14867it [6:41:25, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14868it [6:41:27, 1.44s/it]
14869it [6:41:28, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14870it [6:41:29, 1.40s/it]
14871it [6:41:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14872it [6:41:32, 1.41s/it]
14873it [6:41:33, 1.38s/it]
14874it [6:41:35, 1.37s/it]
14875it [6:41:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14876it [6:41:40, 2.11s/it]
14877it [6:41:41, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14878it [6:41:43, 1.76s/it]
14879it [6:41:44, 1.62s/it]
14880it [6:41:45, 1.53s/it]
14881it [6:41:47, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14882it [6:41:48, 1.47s/it]
14883it [6:41:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14884it [6:41:56, 2.99s/it]
14885it [6:41:57, 2.49s/it]
14886it [6:41:59, 2.14s/it]
14887it [6:42:00, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14888it [6:42:03, 2.27s/it]
14889it [6:42:05, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14890it [6:42:06, 1.83s/it]
14891it [6:42:07, 1.67s/it]
14892it [6:42:09, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14893it [6:42:10, 1.52s/it]
14894it [6:42:11, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14895it [6:42:13, 1.47s/it]
14896it [6:42:14, 1.43s/it]
14897it [6:42:16, 1.40s/it]
14898it [6:42:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14899it [6:42:18, 1.37s/it]
14900it [6:42:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14901it [6:42:21, 1.39s/it]
14902it [6:42:22, 1.37s/it]
14903it [6:42:24, 1.35s/it]
14904it [6:42:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14905it [6:42:26, 1.36s/it]
14906it [6:42:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14907it [6:42:29, 1.37s/it]
14908it [6:42:30, 1.36s/it]
14909it [6:42:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14910it [6:42:33, 1.41s/it]
14911it [6:42:35, 1.39s/it]
14912it [6:42:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14913it [6:42:39, 1.87s/it]
14914it [6:42:40, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14915it [6:42:42, 1.63s/it]
14916it [6:42:43, 1.53s/it]
14917it [6:42:44, 1.46s/it]
14918it [6:42:46, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14919it [6:42:47, 1.43s/it]
14920it [6:42:48, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14921it [6:42:50, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14922it [6:42:52, 1.66s/it]
14923it [6:42:54, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14924it [6:42:55, 1.54s/it]
14925it [6:42:56, 1.47s/it]
14926it [6:42:58, 1.42s/it]
14927it [6:42:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14928it [6:43:00, 1.40s/it]
14929it [6:43:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14930it [6:43:03, 1.40s/it]
14931it [6:43:05, 1.39s/it]
14932it [6:43:06, 1.37s/it]
14933it [6:43:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14934it [6:43:09, 1.40s/it]
14935it [6:43:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14936it [6:43:12, 1.43s/it]
14937it [6:43:13, 1.39s/it]
14938it [6:43:14, 1.37s/it]
14939it [6:43:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14940it [6:43:17, 1.38s/it]
14941it [6:43:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14942it [6:43:20, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14943it [6:43:22, 1.49s/it]
14944it [6:43:23, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14945it [6:43:24, 1.48s/it]
14946it [6:43:26, 1.44s/it]
14947it [6:43:27, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14948it [6:43:29, 1.57s/it]
14949it [6:43:30, 1.48s/it]
14950it [6:43:32, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14951it [6:43:33, 1.46s/it]
14952it [6:43:34, 1.41s/it]
14953it [6:43:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14954it [6:43:37, 1.38s/it]
14955it [6:43:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14956it [6:43:40, 1.39s/it]
14957it [6:43:41, 1.37s/it]
14958it [6:43:43, 1.35s/it]
14959it [6:43:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14960it [6:43:45, 1.38s/it]
14961it [6:43:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14962it [6:43:48, 1.40s/it]
14963it [6:43:49, 1.37s/it]
14964it [6:43:51, 1.37s/it]
14965it [6:43:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14966it [6:43:54, 1.40s/it]
14967it [6:43:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14968it [6:43:56, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14969it [6:43:58, 1.42s/it]
14970it [6:43:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14971it [6:44:01, 1.41s/it]
14972it [6:44:02, 1.38s/it]
14973it [6:44:03, 1.36s/it]
14974it [6:44:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14975it [6:44:06, 1.37s/it]
14976it [6:44:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14977it [6:44:09, 1.42s/it]
14978it [6:44:10, 1.39s/it]
14979it [6:44:12, 1.36s/it]
14980it [6:44:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14981it [6:44:14, 1.39s/it]
14982it [6:44:16, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14983it [6:44:18, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14984it [6:44:20, 1.61s/it]
14985it [6:44:21, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14986it [6:44:22, 1.53s/it]
14987it [6:44:24, 1.47s/it]
14988it [6:44:25, 1.42s/it]
14989it [6:44:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14990it [6:44:28, 1.41s/it]
14991it [6:44:29, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14992it [6:44:31, 1.43s/it]
14993it [6:44:32, 1.41s/it]
14994it [6:44:33, 1.39s/it]
14995it [6:44:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14996it [6:44:36, 1.37s/it]
14997it [6:44:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14998it [6:44:39, 1.40s/it]
14999it [6:44:40, 1.37s/it]
15000it [6:44:42, 1.35s/it]
15001it [6:44:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15002it [6:44:44, 1.36s/it]
15003it [6:44:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15004it [6:44:47, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15005it [6:44:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15006it [6:44:50, 1.44s/it]
15007it [6:44:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15008it [6:44:53, 1.43s/it]
15009it [6:44:54, 1.40s/it]
15010it [6:44:55, 1.37s/it]
15011it [6:44:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15012it [6:44:58, 1.40s/it]
15013it [6:45:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15014it [6:45:01, 1.40s/it]
15015it [6:45:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15016it [6:45:04, 1.42s/it]
15017it [6:45:05, 1.39s/it]
15018it [6:45:07, 1.36s/it]
15019it [6:45:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15020it [6:45:09, 1.38s/it]
15021it [6:45:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15022it [6:45:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15023it [6:45:13, 1.37s/it]
15024it [6:45:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15025it [6:45:16, 1.39s/it]
15026it [6:45:17, 1.36s/it]
15027it [6:45:19, 1.35s/it]
15028it [6:45:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15029it [6:45:22, 1.38s/it]
15030it [6:45:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15031it [6:45:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15032it [6:45:26, 1.41s/it]
15033it [6:45:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15034it [6:45:29, 1.41s/it]
15035it [6:45:30, 1.38s/it]
15036it [6:45:31, 1.35s/it]
15037it [6:45:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15038it [6:45:34, 1.36s/it]
15039it [6:45:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15040it [6:45:37, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15041it [6:45:39, 1.52s/it]
15042it [6:45:40, 1.46s/it]
15043it [6:45:41, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15044it [6:45:43, 1.46s/it]
15045it [6:45:44, 1.42s/it]
15046it [6:45:46, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15047it [6:45:47, 1.46s/it]
15048it [6:45:49, 1.42s/it]
15049it [6:45:50, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15050it [6:45:51, 1.44s/it]
15051it [6:45:53, 1.41s/it]
15052it [6:45:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15053it [6:45:56, 1.41s/it]
15054it [6:45:57, 1.39s/it]
15055it [6:45:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15056it [6:46:00, 1.45s/it]
15057it [6:46:01, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15058it [6:46:03, 1.46s/it]
15059it [6:46:04, 1.41s/it]
15060it [6:46:05, 1.39s/it]
15061it [6:46:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15062it [6:46:08, 1.40s/it]
15063it [6:46:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15064it [6:46:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15065it [6:46:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15066it [6:46:14, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15067it [6:46:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15068it [6:46:17, 1.42s/it]
15069it [6:46:18, 1.39s/it]
15070it [6:46:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15071it [6:46:21, 1.39s/it]
15072it [6:46:22, 1.38s/it]
15073it [6:46:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15074it [6:46:25, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15075it [6:46:26, 1.40s/it]
15076it [6:46:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15077it [6:46:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15078it [6:46:30, 1.38s/it]
15079it [6:46:32, 1.36s/it]
15080it [6:46:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15081it [6:46:34, 1.39s/it]
15082it [6:46:36, 1.37s/it]
15083it [6:46:37, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15084it [6:46:38, 1.37s/it]
15085it [6:46:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15086it [6:46:41, 1.37s/it]
15087it [6:46:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15088it [6:46:44, 1.39s/it]
15089it [6:46:45, 1.37s/it]
15090it [6:46:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15091it [6:46:48, 1.38s/it]
15092it [6:46:49, 1.36s/it]
15093it [6:46:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15094it [6:46:52, 1.39s/it]
15095it [6:46:53, 1.37s/it]
15096it [6:46:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15097it [6:46:56, 1.38s/it]
15098it [6:46:57, 1.36s/it]
15099it [6:46:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15100it [6:47:00, 1.43s/it]
15101it [6:47:02, 1.40s/it]
15102it [6:47:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15103it [6:47:05, 1.40s/it]
15104it [6:47:06, 1.38s/it]
15105it [6:47:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15106it [6:47:09, 1.42s/it]
15107it [6:47:10, 1.39s/it]
15108it [6:47:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15109it [6:47:13, 1.41s/it]
15110it [6:47:14, 1.38s/it]
15111it [6:47:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15112it [6:47:17, 1.37s/it]
15113it [6:47:18, 1.35s/it]
15114it [6:47:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15115it [6:47:21, 1.36s/it]
15116it [6:47:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15117it [6:47:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15118it [6:47:25, 1.40s/it]
15119it [6:47:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15120it [6:47:28, 1.43s/it]
15121it [6:47:29, 1.39s/it]
15122it [6:47:31, 1.39s/it]
15123it [6:47:32, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15124it [6:47:34, 1.43s/it]
15125it [6:47:35, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15126it [6:47:36, 1.42s/it]
15127it [6:47:38, 1.38s/it]
15128it [6:47:39, 1.36s/it]
15129it [6:47:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15130it [6:47:42, 1.37s/it]
15131it [6:47:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15132it [6:47:45, 1.39s/it]
15133it [6:47:46, 1.36s/it]
15134it [6:47:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15135it [6:47:49, 1.38s/it]
15136it [6:47:50, 1.36s/it]
15137it [6:47:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15138it [6:47:53, 1.40s/it]
15139it [6:47:54, 1.39s/it]
15140it [6:47:55, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15141it [6:47:58, 1.76s/it]
15142it [6:48:00, 1.64s/it]
15143it [6:48:01, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15144it [6:48:06, 2.55s/it]
15145it [6:48:07, 2.18s/it]
15146it [6:48:08, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15147it [6:48:10, 1.78s/it]
15148it [6:48:11, 1.64s/it]
15149it [6:48:13, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15150it [6:48:14, 1.54s/it]
15151it [6:48:15, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15152it [6:48:17, 1.49s/it]
15153it [6:48:18, 1.44s/it]
15154it [6:48:20, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15155it [6:48:21, 1.43s/it]
15156it [6:48:22, 1.40s/it]
15157it [6:48:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15158it [6:48:25, 1.40s/it]
15159it [6:48:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15160it [6:48:29, 1.62s/it]
15161it [6:48:30, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15162it [6:48:39, 3.73s/it]
15163it [6:48:40, 3.01s/it]
15164it [6:48:41, 2.50s/it]
15165it [6:48:43, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15166it [6:48:47, 2.76s/it]
15167it [6:48:48, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15168it [6:48:54, 3.31s/it]
15169it [6:48:55, 2.71s/it]
15170it [6:48:57, 2.29s/it]
15171it [6:48:58, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15172it [6:49:01, 2.49s/it]
15173it [6:49:03, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15174it [6:49:10, 3.59s/it]
15175it [6:49:11, 2.91s/it]
15176it [6:49:12, 2.44s/it]
15177it [6:49:14, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15178it [6:49:18, 2.72s/it]
15179it [6:49:19, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15180it [6:49:25, 3.23s/it]
15181it [6:49:26, 2.67s/it]
15182it [6:49:27, 2.27s/it]
15183it [6:49:29, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15184it [6:49:32, 2.51s/it]
15185it [6:49:34, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15186it [6:49:37, 2.58s/it]
15187it [6:49:39, 2.20s/it]
15188it [6:49:40, 1.93s/it]
15189it [6:49:41, 1.78s/it]
15190it [6:49:43, 1.65s/it]
15190it [6:49:43, 1.62s/it]
+INFO:__main__:[Dataset 0] No reference_cache_directory set, skipping reference caching
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+/workspace/musubi-tuner/.venv/lib/python3.12/site-packages/torchaudio/_backend/utils.py:213: UserWarning: In 2.9, this function's implementation will be changed to use torchaudio.load_with_torchcodec` under the hood. Some parameters like ``normalize``, ``format``, ``buffer_size``, and ``backend`` will be ignored. We recommend that you port your code to rely directly on TorchCodec's decoder instead: https://docs.pytorch.org/torchcodec/stable/generated/torchcodec.decoders.AudioDecoder.html#torchcodec.decoders.AudioDecoder.
+ warnings.warn(
+/workspace/musubi-tuner/.venv/lib/python3.12/site-packages/torchaudio/_backend/ffmpeg.py:88: UserWarning: torio.io._streaming_media_decoder.StreamingMediaDecoder has been deprecated. This deprecation is part of a large refactoring effort to transition TorchAudio into a maintenance phase. The decoding and encoding capabilities of PyTorch for both audio and video are being consolidated into TorchCodec. Please see https://github.com/pytorch/audio/issues/3902 for more information. It will be removed from the 2.9 release.
+ s = torchaudio.io.StreamReader(src, format, None, buffer_size)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17206_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17206.mp4): No audio stream found in dataset/ltxxx/videos2/17206.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17204_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17204.mp4): No audio stream found in dataset/ltxxx/videos2/17204.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17301_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17301.mp4): No audio stream found in dataset/ltxxx/videos2/17301.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17384_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17384.mp4): No audio stream found in dataset/ltxxx/videos2/17384.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17389_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17389.mp4): No audio stream found in dataset/ltxxx/videos2/17389.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17413_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17413.mp4): No audio stream found in dataset/ltxxx/videos2/17413.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17433_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17433.mp4): No audio stream found in dataset/ltxxx/videos2/17433.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17519_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17519.mp4): No audio stream found in dataset/ltxxx/videos2/17519.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17563_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17563.mp4): No audio stream found in dataset/ltxxx/videos2/17563.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17706_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17706.mp4): No audio stream found in dataset/ltxxx/videos2/17706.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17727_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17727.mp4): No audio stream found in dataset/ltxxx/videos2/17727.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17772_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17772.mp4): No audio stream found in dataset/ltxxx/videos2/17772.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17843_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17843.mp4): No audio stream found in dataset/ltxxx/videos2/17843.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17853_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17853.mp4): No audio stream found in dataset/ltxxx/videos2/17853.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17941_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17941.mp4): No audio stream found in dataset/ltxxx/videos2/17941.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/17954_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/17954.mp4): No audio stream found in dataset/ltxxx/videos2/17954.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 17999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18067_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18067.mp4): No audio stream found in dataset/ltxxx/videos2/18067.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18096_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18096.mp4): No audio stream found in dataset/ltxxx/videos2/18096.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18252_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18252.mp4): No audio stream found in dataset/ltxxx/videos2/18252.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1826_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1826.mp4): No audio stream found in dataset/ltxxx/videos2/1826.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1833_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1833.mp4): No audio stream found in dataset/ltxxx/videos2/1833.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1835_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1835.mp4): No audio stream found in dataset/ltxxx/videos2/1835.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18396_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18396.mp4): No audio stream found in dataset/ltxxx/videos2/18396.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18395_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18395.mp4): No audio stream found in dataset/ltxxx/videos2/18395.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1845_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1845.mp4): No audio stream found in dataset/ltxxx/videos2/1845.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18473_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18473.mp4): No audio stream found in dataset/ltxxx/videos2/18473.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18507_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18507.mp4): No audio stream found in dataset/ltxxx/videos2/18507.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18519_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18519.mp4): No audio stream found in dataset/ltxxx/videos2/18519.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18539_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18539.mp4): No audio stream found in dataset/ltxxx/videos2/18539.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18665_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18665.mp4): No audio stream found in dataset/ltxxx/videos2/18665.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18687_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18687.mp4): No audio stream found in dataset/ltxxx/videos2/18687.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18757_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18757.mp4): No audio stream found in dataset/ltxxx/videos2/18757.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18812_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18812.mp4): No audio stream found in dataset/ltxxx/videos2/18812.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18839_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18839.mp4): No audio stream found in dataset/ltxxx/videos2/18839.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18880_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18880.mp4): No audio stream found in dataset/ltxxx/videos2/18880.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1889_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1889.mp4): No audio stream found in dataset/ltxxx/videos2/1889.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1894_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1894.mp4): No audio stream found in dataset/ltxxx/videos2/1894.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18943_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18943.mp4): No audio stream found in dataset/ltxxx/videos2/18943.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18942_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18942.mp4): No audio stream found in dataset/ltxxx/videos2/18942.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/18973_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/18973.mp4): No audio stream found in dataset/ltxxx/videos2/18973.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 18999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19012_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19012.mp4): No audio stream found in dataset/ltxxx/videos2/19012.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19062_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19062.mp4): No audio stream found in dataset/ltxxx/videos2/19062.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19066_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19066.mp4): No audio stream found in dataset/ltxxx/videos2/19066.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19101_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19101.mp4): No audio stream found in dataset/ltxxx/videos2/19101.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19180_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19180.mp4): No audio stream found in dataset/ltxxx/videos2/19180.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19238_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19238.mp4): No audio stream found in dataset/ltxxx/videos2/19238.mp4
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19239_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19239.mp4): No audio stream found in dataset/ltxxx/videos2/19239.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19243_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19243.mp4): No audio stream found in dataset/ltxxx/videos2/19243.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19255_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19255.mp4): No audio stream found in dataset/ltxxx/videos2/19255.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19360_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19360.mp4): No audio stream found in dataset/ltxxx/videos2/19360.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19489_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19489.mp4): No audio stream found in dataset/ltxxx/videos2/19489.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19547_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19547.mp4): No audio stream found in dataset/ltxxx/videos2/19547.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19566_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19566.mp4): No audio stream found in dataset/ltxxx/videos2/19566.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19586_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19586.mp4): No audio stream found in dataset/ltxxx/videos2/19586.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19612_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19612.mp4): No audio stream found in dataset/ltxxx/videos2/19612.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1963_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1963.mp4): No audio stream found in dataset/ltxxx/videos2/1963.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19662_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19662.mp4): No audio stream found in dataset/ltxxx/videos2/19662.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19666_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19666.mp4): No audio stream found in dataset/ltxxx/videos2/19666.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1971_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1971.mp4): No audio stream found in dataset/ltxxx/videos2/1971.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19723_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19723.mp4): No audio stream found in dataset/ltxxx/videos2/19723.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/1976_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/1976.mp4): No audio stream found in dataset/ltxxx/videos2/1976.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19793_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19793.mp4): No audio stream found in dataset/ltxxx/videos2/19793.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19797_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19797.mp4): No audio stream found in dataset/ltxxx/videos2/19797.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19825_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19825.mp4): No audio stream found in dataset/ltxxx/videos2/19825.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19863_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19863.mp4): No audio stream found in dataset/ltxxx/videos2/19863.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19878_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19878.mp4): No audio stream found in dataset/ltxxx/videos2/19878.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19902_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19902.mp4): No audio stream found in dataset/ltxxx/videos2/19902.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19958_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19958.mp4): No audio stream found in dataset/ltxxx/videos2/19958.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 1999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/19993_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/19993.mp4): No audio stream found in dataset/ltxxx/videos2/19993.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 19999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20023_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20023.mp4): No audio stream found in dataset/ltxxx/videos2/20023.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20035_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20035.mp4): No audio stream found in dataset/ltxxx/videos2/20035.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20058_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20058.mp4): No audio stream found in dataset/ltxxx/videos2/20058.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20073_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20073.mp4): No audio stream found in dataset/ltxxx/videos2/20073.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20095_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20095.mp4): No audio stream found in dataset/ltxxx/videos2/20095.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20107_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20107.mp4): No audio stream found in dataset/ltxxx/videos2/20107.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2015_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2015.mp4): No audio stream found in dataset/ltxxx/videos2/2015.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20192_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20192.mp4): No audio stream found in dataset/ltxxx/videos2/20192.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20226_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20226.mp4): No audio stream found in dataset/ltxxx/videos2/20226.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20289_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20289.mp4): No audio stream found in dataset/ltxxx/videos2/20289.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20294_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20294.mp4): No audio stream found in dataset/ltxxx/videos2/20294.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20316_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20316.mp4): No audio stream found in dataset/ltxxx/videos2/20316.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20320_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20320.mp4): No audio stream found in dataset/ltxxx/videos2/20320.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20374_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20374.mp4): No audio stream found in dataset/ltxxx/videos2/20374.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20412_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20412.mp4): No audio stream found in dataset/ltxxx/videos2/20412.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20424_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20424.mp4): No audio stream found in dataset/ltxxx/videos2/20424.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20445_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20445.mp4): No audio stream found in dataset/ltxxx/videos2/20445.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20464_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20464.mp4): No audio stream found in dataset/ltxxx/videos2/20464.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2051_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2051.mp4): No audio stream found in dataset/ltxxx/videos2/2051.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20572_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20572.mp4): No audio stream found in dataset/ltxxx/videos2/20572.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20644_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20644.mp4): No audio stream found in dataset/ltxxx/videos2/20644.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20692_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20692.mp4): No audio stream found in dataset/ltxxx/videos2/20692.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20695_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20695.mp4): No audio stream found in dataset/ltxxx/videos2/20695.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20730_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20730.mp4): No audio stream found in dataset/ltxxx/videos2/20730.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20744_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20744.mp4): No audio stream found in dataset/ltxxx/videos2/20744.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20798_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20798.mp4): No audio stream found in dataset/ltxxx/videos2/20798.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20809_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20809.mp4): No audio stream found in dataset/ltxxx/videos2/20809.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20867_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20867.mp4): No audio stream found in dataset/ltxxx/videos2/20867.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20885_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20885.mp4): No audio stream found in dataset/ltxxx/videos2/20885.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20921_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20921.mp4): No audio stream found in dataset/ltxxx/videos2/20921.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20945_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20945.mp4): No audio stream found in dataset/ltxxx/videos2/20945.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2098_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2098.mp4): No audio stream found in dataset/ltxxx/videos2/2098.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/20994_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/20994.mp4): No audio stream found in dataset/ltxxx/videos2/20994.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 20999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21025_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21025.mp4): No audio stream found in dataset/ltxxx/videos2/21025.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21136_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21136.mp4): No audio stream found in dataset/ltxxx/videos2/21136.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21186_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21186.mp4): No audio stream found in dataset/ltxxx/videos2/21186.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21261_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21261.mp4): No audio stream found in dataset/ltxxx/videos2/21261.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21292_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21292.mp4): No audio stream found in dataset/ltxxx/videos2/21292.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21338_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21338.mp4): No audio stream found in dataset/ltxxx/videos2/21338.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21357_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21357.mp4): No audio stream found in dataset/ltxxx/videos2/21357.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21391_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21391.mp4): No audio stream found in dataset/ltxxx/videos2/21391.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21442_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21442.mp4): No audio stream found in dataset/ltxxx/videos2/21442.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21461_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21461.mp4): No audio stream found in dataset/ltxxx/videos2/21461.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21475_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21475.mp4): No audio stream found in dataset/ltxxx/videos2/21475.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21505_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21505.mp4): No audio stream found in dataset/ltxxx/videos2/21505.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21550_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21550.mp4): No audio stream found in dataset/ltxxx/videos2/21550.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21572_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21572.mp4): No audio stream found in dataset/ltxxx/videos2/21572.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21587_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21587.mp4): No audio stream found in dataset/ltxxx/videos2/21587.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21703_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21703.mp4): No audio stream found in dataset/ltxxx/videos2/21703.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21718_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21718.mp4): No audio stream found in dataset/ltxxx/videos2/21718.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21872_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21872.mp4): No audio stream found in dataset/ltxxx/videos2/21872.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/219_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/219.mp4): No audio stream found in dataset/ltxxx/videos2/219.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21934_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21934.mp4): No audio stream found in dataset/ltxxx/videos2/21934.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2194_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2194.mp4): No audio stream found in dataset/ltxxx/videos2/2194.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21949_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21949.mp4): No audio stream found in dataset/ltxxx/videos2/21949.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2195_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2195.mp4): No audio stream found in dataset/ltxxx/videos2/2195.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/21963_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/21963.mp4): No audio stream found in dataset/ltxxx/videos2/21963.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 21999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22062_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22062.mp4): No audio stream found in dataset/ltxxx/videos2/22062.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2207_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2207.mp4): No audio stream found in dataset/ltxxx/videos2/2207.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22072_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22072.mp4): No audio stream found in dataset/ltxxx/videos2/22072.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2210_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2210.mp4): No audio stream found in dataset/ltxxx/videos2/2210.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22149_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22149.mp4): No audio stream found in dataset/ltxxx/videos2/22149.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22217_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22217.mp4): No audio stream found in dataset/ltxxx/videos2/22217.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22275_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22275.mp4): No audio stream found in dataset/ltxxx/videos2/22275.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22357_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22357.mp4): No audio stream found in dataset/ltxxx/videos2/22357.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22375_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22375.mp4): No audio stream found in dataset/ltxxx/videos2/22375.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22399_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22399.mp4): No audio stream found in dataset/ltxxx/videos2/22399.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22419_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22419.mp4): No audio stream found in dataset/ltxxx/videos2/22419.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22463_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22463.mp4): No audio stream found in dataset/ltxxx/videos2/22463.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22468_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22468.mp4): No audio stream found in dataset/ltxxx/videos2/22468.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22471_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22471.mp4): No audio stream found in dataset/ltxxx/videos2/22471.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22545_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22545.mp4): No audio stream found in dataset/ltxxx/videos2/22545.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22561_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22561.mp4): No audio stream found in dataset/ltxxx/videos2/22561.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2261_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2261.mp4): No audio stream found in dataset/ltxxx/videos2/2261.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22615_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22615.mp4): No audio stream found in dataset/ltxxx/videos2/22615.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22652_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22652.mp4): No audio stream found in dataset/ltxxx/videos2/22652.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22671_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22671.mp4): No audio stream found in dataset/ltxxx/videos2/22671.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22679_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22679.mp4): No audio stream found in dataset/ltxxx/videos2/22679.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22701_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22701.mp4): No audio stream found in dataset/ltxxx/videos2/22701.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22796_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22796.mp4): No audio stream found in dataset/ltxxx/videos2/22796.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22842_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22842.mp4): No audio stream found in dataset/ltxxx/videos2/22842.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22920_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22920.mp4): No audio stream found in dataset/ltxxx/videos2/22920.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2293_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2293.mp4): No audio stream found in dataset/ltxxx/videos2/2293.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/22960_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/22960.mp4): No audio stream found in dataset/ltxxx/videos2/22960.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 22999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23079_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23079.mp4): No audio stream found in dataset/ltxxx/videos2/23079.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23095_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23095.mp4): No audio stream found in dataset/ltxxx/videos2/23095.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2317_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2317.mp4): No audio stream found in dataset/ltxxx/videos2/2317.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23254_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23254.mp4): No audio stream found in dataset/ltxxx/videos2/23254.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23266_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23266.mp4): No audio stream found in dataset/ltxxx/videos2/23266.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23340_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23340.mp4): No audio stream found in dataset/ltxxx/videos2/23340.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23396_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23396.mp4): No audio stream found in dataset/ltxxx/videos2/23396.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23401_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23401.mp4): No audio stream found in dataset/ltxxx/videos2/23401.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2341_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2341.mp4): No audio stream found in dataset/ltxxx/videos2/2341.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23440_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23440.mp4): No audio stream found in dataset/ltxxx/videos2/23440.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23479_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23479.mp4): No audio stream found in dataset/ltxxx/videos2/23479.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23500_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23500.mp4): No audio stream found in dataset/ltxxx/videos2/23500.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23522_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23522.mp4): No audio stream found in dataset/ltxxx/videos2/23522.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23529_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23529.mp4): No audio stream found in dataset/ltxxx/videos2/23529.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23550_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23550.mp4): No audio stream found in dataset/ltxxx/videos2/23550.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23555_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23555.mp4): No audio stream found in dataset/ltxxx/videos2/23555.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23599_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23599.mp4): No audio stream found in dataset/ltxxx/videos2/23599.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23623_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23623.mp4): No audio stream found in dataset/ltxxx/videos2/23623.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23765_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23765.mp4): No audio stream found in dataset/ltxxx/videos2/23765.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23814_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23814.mp4): No audio stream found in dataset/ltxxx/videos2/23814.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23927_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23927.mp4): No audio stream found in dataset/ltxxx/videos2/23927.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23939_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23939.mp4): No audio stream found in dataset/ltxxx/videos2/23939.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23959_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23959.mp4): No audio stream found in dataset/ltxxx/videos2/23959.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/23983_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/23983.mp4): No audio stream found in dataset/ltxxx/videos2/23983.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 23999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24015_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24015.mp4): No audio stream found in dataset/ltxxx/videos2/24015.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2408_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2408.mp4): No audio stream found in dataset/ltxxx/videos2/2408.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24095_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24095.mp4): No audio stream found in dataset/ltxxx/videos2/24095.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24135_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24135.mp4): No audio stream found in dataset/ltxxx/videos2/24135.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24231_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24231.mp4): No audio stream found in dataset/ltxxx/videos2/24231.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24241_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24241.mp4): No audio stream found in dataset/ltxxx/videos2/24241.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24257_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24257.mp4): No audio stream found in dataset/ltxxx/videos2/24257.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2429_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2429.mp4): No audio stream found in dataset/ltxxx/videos2/2429.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24312_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24312.mp4): No audio stream found in dataset/ltxxx/videos2/24312.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24338_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24338.mp4): No audio stream found in dataset/ltxxx/videos2/24338.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24342_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24342.mp4): No audio stream found in dataset/ltxxx/videos2/24342.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24349_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24349.mp4): No audio stream found in dataset/ltxxx/videos2/24349.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24370_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24370.mp4): No audio stream found in dataset/ltxxx/videos2/24370.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24401_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24401.mp4): No audio stream found in dataset/ltxxx/videos2/24401.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24432_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24432.mp4): No audio stream found in dataset/ltxxx/videos2/24432.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24540_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24540.mp4): No audio stream found in dataset/ltxxx/videos2/24540.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24547_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24547.mp4): No audio stream found in dataset/ltxxx/videos2/24547.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24552_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24552.mp4): No audio stream found in dataset/ltxxx/videos2/24552.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24567_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24567.mp4): No audio stream found in dataset/ltxxx/videos2/24567.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24715_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24715.mp4): No audio stream found in dataset/ltxxx/videos2/24715.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24731_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24731.mp4): No audio stream found in dataset/ltxxx/videos2/24731.mp4
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24733_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24733.mp4): No audio stream found in dataset/ltxxx/videos2/24733.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24843_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24843.mp4): No audio stream found in dataset/ltxxx/videos2/24843.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24846_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24846.mp4): No audio stream found in dataset/ltxxx/videos2/24846.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24933_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24933.mp4): No audio stream found in dataset/ltxxx/videos2/24933.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24947_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24947.mp4): No audio stream found in dataset/ltxxx/videos2/24947.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/24975_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/24975.mp4): No audio stream found in dataset/ltxxx/videos2/24975.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 24999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25153_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25153.mp4): No audio stream found in dataset/ltxxx/videos2/25153.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25208_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25208.mp4): No audio stream found in dataset/ltxxx/videos2/25208.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25267_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25267.mp4): No audio stream found in dataset/ltxxx/videos2/25267.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2527_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2527.mp4): No audio stream found in dataset/ltxxx/videos2/2527.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25284_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25284.mp4): No audio stream found in dataset/ltxxx/videos2/25284.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25300_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25300.mp4): No audio stream found in dataset/ltxxx/videos2/25300.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25339_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25339.mp4): No audio stream found in dataset/ltxxx/videos2/25339.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25359_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25359.mp4): No audio stream found in dataset/ltxxx/videos2/25359.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25487_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25487.mp4): No audio stream found in dataset/ltxxx/videos2/25487.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25548_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25548.mp4): No audio stream found in dataset/ltxxx/videos2/25548.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25575_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25575.mp4): No audio stream found in dataset/ltxxx/videos2/25575.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25596_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25596.mp4): No audio stream found in dataset/ltxxx/videos2/25596.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25616_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25616.mp4): No audio stream found in dataset/ltxxx/videos2/25616.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25625_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25625.mp4): No audio stream found in dataset/ltxxx/videos2/25625.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25754_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25754.mp4): No audio stream found in dataset/ltxxx/videos2/25754.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25787_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25787.mp4): No audio stream found in dataset/ltxxx/videos2/25787.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25846_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25846.mp4): No audio stream found in dataset/ltxxx/videos2/25846.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/25929_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/25929.mp4): No audio stream found in dataset/ltxxx/videos2/25929.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 25999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26020_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26020.mp4): No audio stream found in dataset/ltxxx/videos2/26020.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26027_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26027.mp4): No audio stream found in dataset/ltxxx/videos2/26027.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26120_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26120.mp4): No audio stream found in dataset/ltxxx/videos2/26120.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26151_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26151.mp4): No audio stream found in dataset/ltxxx/videos2/26151.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26176_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26176.mp4): No audio stream found in dataset/ltxxx/videos2/26176.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26198_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26198.mp4): No audio stream found in dataset/ltxxx/videos2/26198.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26367_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26367.mp4): No audio stream found in dataset/ltxxx/videos2/26367.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26386_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26386.mp4): No audio stream found in dataset/ltxxx/videos2/26386.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26407_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26407.mp4): No audio stream found in dataset/ltxxx/videos2/26407.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26427_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26427.mp4): No audio stream found in dataset/ltxxx/videos2/26427.mp4
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26428_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26428.mp4): No audio stream found in dataset/ltxxx/videos2/26428.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26539_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26539.mp4): No audio stream found in dataset/ltxxx/videos2/26539.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26611_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26611.mp4): No audio stream found in dataset/ltxxx/videos2/26611.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26615_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26615.mp4): No audio stream found in dataset/ltxxx/videos2/26615.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26715_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26715.mp4): No audio stream found in dataset/ltxxx/videos2/26715.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26759_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26759.mp4): No audio stream found in dataset/ltxxx/videos2/26759.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26808_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26808.mp4): No audio stream found in dataset/ltxxx/videos2/26808.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26833_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26833.mp4): No audio stream found in dataset/ltxxx/videos2/26833.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26840_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26840.mp4): No audio stream found in dataset/ltxxx/videos2/26840.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/26855_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/26855.mp4): No audio stream found in dataset/ltxxx/videos2/26855.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 26999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27042_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27042.mp4): No audio stream found in dataset/ltxxx/videos2/27042.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27119_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27119.mp4): No audio stream found in dataset/ltxxx/videos2/27119.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27192_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27192.mp4): No audio stream found in dataset/ltxxx/videos2/27192.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27193_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27193.mp4): No audio stream found in dataset/ltxxx/videos2/27193.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27311_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27311.mp4): No audio stream found in dataset/ltxxx/videos2/27311.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27314_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27314.mp4): No audio stream found in dataset/ltxxx/videos2/27314.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27451_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27451.mp4): No audio stream found in dataset/ltxxx/videos2/27451.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2746_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2746.mp4): No audio stream found in dataset/ltxxx/videos2/2746.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27499_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27499.mp4): No audio stream found in dataset/ltxxx/videos2/27499.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27529_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27529.mp4): No audio stream found in dataset/ltxxx/videos2/27529.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27559_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27559.mp4): No audio stream found in dataset/ltxxx/videos2/27559.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27623_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27623.mp4): No audio stream found in dataset/ltxxx/videos2/27623.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27658_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27658.mp4): No audio stream found in dataset/ltxxx/videos2/27658.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27674_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27674.mp4): No audio stream found in dataset/ltxxx/videos2/27674.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27729_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27729.mp4): No audio stream found in dataset/ltxxx/videos2/27729.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27769_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27769.mp4): No audio stream found in dataset/ltxxx/videos2/27769.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27825_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27825.mp4): No audio stream found in dataset/ltxxx/videos2/27825.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27836_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27836.mp4): No audio stream found in dataset/ltxxx/videos2/27836.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27854_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27854.mp4): No audio stream found in dataset/ltxxx/videos2/27854.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27856_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27856.mp4): No audio stream found in dataset/ltxxx/videos2/27856.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27863_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27863.mp4): No audio stream found in dataset/ltxxx/videos2/27863.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27896_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27896.mp4): No audio stream found in dataset/ltxxx/videos2/27896.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2794_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2794.mp4): No audio stream found in dataset/ltxxx/videos2/2794.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27962_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27962.mp4): No audio stream found in dataset/ltxxx/videos2/27962.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/27965_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/27965.mp4): No audio stream found in dataset/ltxxx/videos2/27965.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 27999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2801_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2801.mp4): No audio stream found in dataset/ltxxx/videos2/2801.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28058_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28058.mp4): No audio stream found in dataset/ltxxx/videos2/28058.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28067_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28067.mp4): No audio stream found in dataset/ltxxx/videos2/28067.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28164_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28164.mp4): No audio stream found in dataset/ltxxx/videos2/28164.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28173_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28173.mp4): No audio stream found in dataset/ltxxx/videos2/28173.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28211_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28211.mp4): No audio stream found in dataset/ltxxx/videos2/28211.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28238_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28238.mp4): No audio stream found in dataset/ltxxx/videos2/28238.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28249_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28249.mp4): No audio stream found in dataset/ltxxx/videos2/28249.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28286_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28286.mp4): No audio stream found in dataset/ltxxx/videos2/28286.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28429_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28429.mp4): No audio stream found in dataset/ltxxx/videos2/28429.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28495_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28495.mp4): No audio stream found in dataset/ltxxx/videos2/28495.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28541_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28541.mp4): No audio stream found in dataset/ltxxx/videos2/28541.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28592_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28592.mp4): No audio stream found in dataset/ltxxx/videos2/28592.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28698_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28698.mp4): No audio stream found in dataset/ltxxx/videos2/28698.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28754_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28754.mp4): No audio stream found in dataset/ltxxx/videos2/28754.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28764_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28764.mp4): No audio stream found in dataset/ltxxx/videos2/28764.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28847_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28847.mp4): No audio stream found in dataset/ltxxx/videos2/28847.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28860_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28860.mp4): No audio stream found in dataset/ltxxx/videos2/28860.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28872_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28872.mp4): No audio stream found in dataset/ltxxx/videos2/28872.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/28906_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/28906.mp4): No audio stream found in dataset/ltxxx/videos2/28906.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 28999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29054_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29054.mp4): No audio stream found in dataset/ltxxx/videos2/29054.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29069_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29069.mp4): No audio stream found in dataset/ltxxx/videos2/29069.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29076_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29076.mp4): No audio stream found in dataset/ltxxx/videos2/29076.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29090_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29090.mp4): No audio stream found in dataset/ltxxx/videos2/29090.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29093_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29093.mp4): No audio stream found in dataset/ltxxx/videos2/29093.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29187_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29187.mp4): No audio stream found in dataset/ltxxx/videos2/29187.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29197_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29197.mp4): No audio stream found in dataset/ltxxx/videos2/29197.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29231_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29231.mp4): No audio stream found in dataset/ltxxx/videos2/29231.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29248_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29248.mp4): No audio stream found in dataset/ltxxx/videos2/29248.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2939_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2939.mp4): No audio stream found in dataset/ltxxx/videos2/2939.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29394_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29394.mp4): No audio stream found in dataset/ltxxx/videos2/29394.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29400_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29400.mp4): No audio stream found in dataset/ltxxx/videos2/29400.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29414_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29414.mp4): No audio stream found in dataset/ltxxx/videos2/29414.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29453_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29453.mp4): No audio stream found in dataset/ltxxx/videos2/29453.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29472_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29472.mp4): No audio stream found in dataset/ltxxx/videos2/29472.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2951_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2951.mp4): No audio stream found in dataset/ltxxx/videos2/2951.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29512_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29512.mp4): No audio stream found in dataset/ltxxx/videos2/29512.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29540_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29540.mp4): No audio stream found in dataset/ltxxx/videos2/29540.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29572_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29572.mp4): No audio stream found in dataset/ltxxx/videos2/29572.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/2958_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/2958.mp4): No audio stream found in dataset/ltxxx/videos2/2958.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29702_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29702.mp4): No audio stream found in dataset/ltxxx/videos2/29702.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29771_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29771.mp4): No audio stream found in dataset/ltxxx/videos2/29771.mp4
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29772_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29772.mp4): No audio stream found in dataset/ltxxx/videos2/29772.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29815_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29815.mp4): No audio stream found in dataset/ltxxx/videos2/29815.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29871_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29871.mp4): No audio stream found in dataset/ltxxx/videos2/29871.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29881_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29881.mp4): No audio stream found in dataset/ltxxx/videos2/29881.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/29932_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/29932.mp4): No audio stream found in dataset/ltxxx/videos2/29932.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 2999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 29999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30.mp4): No audio stream found in dataset/ltxxx/videos2/30.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/3004_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/3004.mp4): No audio stream found in dataset/ltxxx/videos2/3004.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30053_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30053.mp4): No audio stream found in dataset/ltxxx/videos2/30053.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30063_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30063.mp4): No audio stream found in dataset/ltxxx/videos2/30063.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30075_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30075.mp4): No audio stream found in dataset/ltxxx/videos2/30075.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30082_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30082.mp4): No audio stream found in dataset/ltxxx/videos2/30082.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30150_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30150.mp4): No audio stream found in dataset/ltxxx/videos2/30150.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30188_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30188.mp4): No audio stream found in dataset/ltxxx/videos2/30188.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30209_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30209.mp4): No audio stream found in dataset/ltxxx/videos2/30209.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30237_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30237.mp4): No audio stream found in dataset/ltxxx/videos2/30237.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/3033_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/3033.mp4): No audio stream found in dataset/ltxxx/videos2/3033.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30345_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30345.mp4): No audio stream found in dataset/ltxxx/videos2/30345.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30362_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30362.mp4): No audio stream found in dataset/ltxxx/videos2/30362.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30401_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30401.mp4): No audio stream found in dataset/ltxxx/videos2/30401.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30402_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30402.mp4): No audio stream found in dataset/ltxxx/videos2/30402.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30464_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30464.mp4): No audio stream found in dataset/ltxxx/videos2/30464.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30573_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30573.mp4): No audio stream found in dataset/ltxxx/videos2/30573.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30609_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30609.mp4): No audio stream found in dataset/ltxxx/videos2/30609.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/3062_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/3062.mp4): No audio stream found in dataset/ltxxx/videos2/3062.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30624_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30624.mp4): No audio stream found in dataset/ltxxx/videos2/30624.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30661_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30661.mp4): No audio stream found in dataset/ltxxx/videos2/30661.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30666_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30666.mp4): No audio stream found in dataset/ltxxx/videos2/30666.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/30785_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/30785.mp4): No audio stream found in dataset/ltxxx/videos2/30785.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos2/3085_00000-241.mp4 (audio_path=dataset/ltxxx/videos2/3085.mp4): No audio stream found in dataset/ltxxx/videos2/3085.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 30959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 3096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:__main__:Audio latent caching complete: 14852 encoded, 338 failed, 0 skipped (existing)
diff --git a/logs/ltx2_cache_gpu7.log b/logs/ltx2_cache_gpu7.log
new file mode 100644
index 0000000000000000000000000000000000000000..c1b28ad9da6f3f95564355bd8f507d454bed5e69
--- /dev/null
+++ b/logs/ltx2_cache_gpu7.log
@@ -0,0 +1,31071 @@
+INFO:__main__:Load dataset config from train/ltxxx_gpu7.toml
+INFO:musubi_tuner.dataset.image_video_dataset:glob videos in dataset/ltxxx/videos7
+INFO:musubi_tuner.dataset.image_video_dataset:found 15339 videos
+INFO:musubi_tuner.dataset.config_utils:[Dataset 0]
+ dataset_type: video
+ resolution: (512, 512)
+ batch_size: 1
+ num_repeats: 1
+ video_loss_weight: None
+ audio_loss_weight: None
+ caption_extension: ".txt"
+ enable_bucket: True
+ bucket_no_upscale: False
+ separate_audio_buckets: False
+ cache_only: False
+ cache_directory: "dataset/ltxxx/cache7"
+ debug_dataset: False
+ video_directory: "dataset/ltxxx/videos7"
+ video_jsonl_file: "None"
+ control_directory: "None"
+ reference_directory: "None"
+ reference_audio_directory: "None"
+ reference_audio_cache_directory: "None"
+ target_frames: (241,)
+ frame_extraction: head
+ frame_stride: 1
+ frame_sample: 1
+ max_frames: 129
+ source_fps: 24.0
+ target_fps: 25.0
+ fp_latent_window_size: 9
+
+
+INFO:__main__:--vae not provided; using --ltx2_checkpoint as VAE checkpoint
+INFO:musubi_tuner.ltx_2.loader.single_gpu_model_builder:Materializing 3 unused buffer(s) as zeros: ['per_channel_statistics.mean-of-stds', 'per_channel_statistics.mean-of-stds_over_std-of-means', 'per_channel_statistics.channel']
+INFO:musubi_tuner.cache_latents:Encoding dataset [0]
+
0it [00:00, ?it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1it [00:04, 4.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2it [00:05, 2.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3it [00:11, 4.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7it [00:13, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9it [00:16, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10it [00:17, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11it [00:18, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12it [00:19, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13it [00:20, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15it [00:23, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
16it [00:23, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
17it [00:24, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
18it [00:25, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
19it [00:25, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
20it [00:26, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
21it [00:27, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
23it [00:29, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
24it [00:31, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
25it [00:31, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
26it [00:33, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
27it [00:33, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
28it [00:34, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
29it [00:35, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
30it [00:37, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
31it [00:38, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
32it [00:40, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
33it [00:42, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
35it [00:43, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
37it [00:43, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
38it [00:44, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
39it [00:46, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
40it [00:47, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
41it [00:49, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
42it [00:50, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
44it [00:50, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
45it [00:52, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
46it [00:53, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
47it [00:55, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
48it [00:56, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
49it [00:57, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
50it [00:58, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
51it [00:58, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
52it [00:59, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
53it [01:02, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
54it [01:04, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
56it [01:04, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
58it [01:06, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
59it [01:07, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
60it [01:12, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
61it [01:15, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
63it [01:16, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
64it [01:17, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
65it [01:18, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
66it [01:18, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
67it [01:20, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
68it [01:20, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
69it [01:22, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
70it [01:23, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
71it [01:24, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
72it [01:25, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
73it [01:25, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
74it [01:27, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
75it [01:28, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
77it [01:29, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
78it [01:30, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
79it [01:33, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
80it [01:34, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
82it [01:35, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
83it [01:37, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
84it [01:37, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
85it [01:38, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
86it [01:40, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
87it [01:41, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
88it [01:41, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
89it [01:43, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
90it [01:44, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
91it [01:45, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
92it [01:45, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
93it [01:46, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
94it [01:47, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
95it [01:48, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
96it [01:49, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
97it [01:50, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
98it [01:51, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
99it [01:52, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
100it [01:53, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
101it [01:54, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
103it [01:57, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
104it [01:58, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
105it [01:59, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
107it [02:00, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
109it [02:01, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
110it [02:03, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
111it [02:03, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
112it [02:05, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
113it [02:07, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
114it [02:07, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
115it [02:08, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
116it [02:10, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
117it [02:10, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
118it [02:11, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
119it [02:12, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
120it [02:14, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
121it [02:15, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
122it [02:16, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
123it [02:17, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
124it [02:17, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
125it [02:19, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
126it [02:20, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
127it [02:20, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
128it [02:21, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
129it [02:21, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
130it [02:21, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
131it [02:23, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
132it [02:23, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
133it [02:25, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
134it [02:26, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
135it [02:26, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
137it [02:27, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
138it [02:29, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
139it [02:29, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
140it [02:30, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
141it [02:31, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
142it [02:31, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
143it [02:34, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
144it [02:34, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
145it [02:34, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
146it [02:34, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
147it [02:35, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
148it [02:36, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
149it [02:38, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
150it [02:39, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
152it [02:39, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
153it [02:40, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
154it [02:41, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
155it [02:44, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
156it [02:44, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
157it [02:45, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
158it [02:46, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
159it [02:46, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
160it [02:46, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
161it [02:48, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
162it [02:50, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
163it [02:50, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
164it [02:51, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
165it [02:51, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
166it [02:53, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
167it [02:54, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
168it [02:54, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
169it [02:54, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
170it [02:57, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
171it [02:58, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
172it [02:58, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
173it [02:58, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
174it [02:59, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
175it [03:00, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
176it [03:02, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
177it [03:02, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
178it [03:02, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
179it [03:06, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
180it [03:07, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
181it [03:07, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
183it [03:09, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
184it [03:12, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
186it [03:13, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
187it [03:13, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
188it [03:14, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
189it [03:15, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
190it [03:17, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
191it [03:17, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
192it [03:18, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
193it [03:18, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
194it [03:19, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
195it [03:21, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
196it [03:22, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
198it [03:22, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
199it [03:23, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
200it [03:25, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
201it [03:26, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
202it [03:27, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
203it [03:27, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
204it [03:29, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
205it [03:29, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
206it [03:30, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
207it [03:33, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
208it [03:34, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
209it [03:35, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
210it [03:36, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
211it [03:36, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
212it [03:40, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
213it [03:41, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
214it [03:42, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
215it [03:43, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
216it [03:43, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
217it [03:44, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
218it [03:46, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
219it [03:47, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
220it [03:48, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
221it [03:49, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
222it [03:49, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
223it [03:50, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
224it [03:50, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
225it [03:50, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
226it [03:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
227it [03:54, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
228it [03:54, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
229it [03:56, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
230it [03:58, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
231it [03:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
232it [04:00, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
233it [04:01, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
234it [04:02, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
235it [04:03, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
236it [04:03, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
237it [04:05, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
239it [04:06, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
240it [04:06, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
241it [04:07, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
242it [04:09, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
244it [04:09, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
245it [04:10, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
246it [04:11, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
247it [04:11, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
248it [04:13, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
249it [04:14, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
250it [04:14, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
251it [04:15, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
252it [04:16, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
253it [04:17, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
254it [04:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
256it [04:20, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
257it [04:23, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
258it [04:26, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
259it [04:28, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
260it [04:29, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
261it [04:30, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
262it [04:30, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
263it [04:31, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
264it [04:32, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
265it [04:33, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
266it [04:34, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
267it [04:35, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
268it [04:36, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
269it [04:36, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
270it [04:37, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
271it [04:37, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
272it [04:38, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
273it [04:39, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
274it [04:41, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
275it [04:41, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
276it [04:41, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
277it [04:42, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
278it [04:43, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
279it [04:45, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
281it [04:45, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
283it [04:46, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
284it [04:47, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
285it [04:48, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
286it [04:49, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
287it [04:49, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
288it [04:50, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
290it [04:51, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
291it [04:53, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
292it [04:53, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
293it [04:54, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
294it [04:54, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
295it [04:55, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
296it [04:56, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
297it [04:59, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
299it [04:59, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
300it [05:00, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
301it [05:01, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
302it [05:02, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
303it [05:02, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
304it [05:03, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
305it [05:08, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
306it [05:08, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
307it [05:10, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
308it [05:10, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
310it [05:15, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
311it [05:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
312it [05:16, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
313it [05:16, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
314it [05:17, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
316it [05:19, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
317it [05:19, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
318it [05:20, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
319it [05:22, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
320it [05:22, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
321it [05:22, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
322it [05:23, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
323it [05:24, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
324it [05:24, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
325it [05:25, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
326it [05:27, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
327it [05:27, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
328it [05:27, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
329it [05:28, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
330it [05:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
332it [05:29, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
333it [05:30, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
334it [05:30, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
335it [05:31, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
336it [05:33, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
337it [05:34, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
338it [05:34, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
339it [05:35, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
340it [05:36, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
341it [05:36, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
342it [05:38, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
343it [05:39, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
344it [05:39, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
345it [05:39, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
346it [05:41, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
347it [05:41, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
348it [05:42, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
349it [05:42, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
350it [05:43, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
351it [05:43, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
352it [05:44, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
353it [05:44, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
354it [05:45, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
355it [05:46, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
357it [05:47, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
358it [05:48, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
359it [05:49, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
360it [05:51, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
361it [05:51, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
362it [05:53, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
363it [05:53, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
364it [05:53, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
365it [05:56, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
366it [05:57, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
367it [05:58, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
368it [05:58, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
369it [05:59, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
370it [05:59, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
371it [06:01, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
372it [06:03, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
373it [06:03, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
374it [06:03, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
375it [06:04, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
376it [06:04, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
377it [06:08, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
378it [06:08, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
379it [06:09, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
380it [06:09, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
381it [06:09, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
382it [06:10, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
383it [06:12, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
384it [06:13, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
385it [06:13, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
386it [06:13, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
387it [06:14, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
388it [06:14, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
389it [06:16, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
390it [06:17, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
391it [06:18, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
392it [06:19, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
394it [06:20, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
395it [06:20, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
396it [06:21, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
397it [06:22, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
398it [06:22, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
399it [06:22, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
400it [06:23, 2.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
401it [06:24, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
402it [06:26, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
403it [06:27, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
404it [06:27, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
405it [06:28, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
406it [06:28, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
407it [06:29, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
408it [06:30, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
409it [06:31, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
411it [06:32, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
412it [06:32, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
414it [06:33, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
415it [06:34, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
417it [06:35, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
419it [06:35, 2.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
420it [06:36, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
421it [06:37, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
422it [06:37, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
423it [06:38, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
424it [06:38, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
425it [06:39, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
426it [06:39, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
427it [06:42, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
429it [06:43, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
430it [06:43, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
431it [06:43, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
432it [06:44, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
433it [06:46, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
435it [06:47, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
436it [06:48, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
438it [06:48, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
439it [06:50, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
440it [06:50, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
441it [06:51, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
442it [06:52, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
444it [06:53, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
445it [06:55, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
446it [06:55, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
447it [06:56, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
448it [06:56, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
450it [06:59, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
451it [07:00, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
452it [07:00, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
453it [07:01, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
455it [07:02, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
456it [07:03, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
457it [07:03, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
458it [07:04, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
459it [07:05, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
460it [07:05, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
461it [07:05, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
462it [07:06, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
463it [07:07, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
464it [07:08, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
465it [07:08, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
466it [07:09, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
467it [07:09, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
468it [07:10, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
469it [07:11, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
470it [07:13, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
471it [07:13, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
472it [07:14, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
473it [07:15, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
476it [07:17, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
477it [07:18, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
478it [07:19, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
479it [07:19, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
480it [07:19, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
481it [07:19, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
482it [07:20, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
483it [07:21, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
486it [07:23, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
487it [07:23, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
488it [07:24, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
489it [07:26, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
490it [07:27, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
491it [07:27, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
492it [07:27, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
493it [07:28, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
494it [07:28, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
495it [07:29, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
496it [07:31, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
497it [07:31, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
498it [07:32, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
499it [07:32, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
501it [07:33, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
502it [07:35, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
503it [07:35, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
504it [07:37, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
505it [07:37, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
506it [07:38, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
507it [07:38, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
508it [07:40, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
509it [07:40, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
510it [07:42, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
511it [07:42, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
512it [07:42, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
513it [07:43, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
514it [07:43, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
515it [07:45, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
516it [07:45, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
517it [07:46, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
518it [07:46, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
519it [07:46, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
520it [07:47, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
521it [07:48, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
522it [07:50, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
523it [07:50, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
524it [07:50, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
525it [07:50, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
526it [07:52, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
527it [07:54, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
528it [07:55, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
529it [07:56, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
530it [07:56, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
531it [07:57, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
532it [08:01, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
533it [08:03, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
534it [08:03, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
535it [08:05, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
536it [08:06, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
537it [08:08, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
538it [08:08, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
539it [08:09, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
540it [08:09, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
541it [08:09, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
542it [08:10, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
543it [08:11, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
545it [08:12, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
546it [08:14, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
547it [08:14, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
549it [08:16, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
550it [08:16, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
551it [08:17, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
552it [08:17, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
553it [08:18, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
554it [08:19, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
555it [08:19, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
556it [08:20, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
557it [08:20, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
558it [08:21, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
559it [08:21, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
560it [08:22, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
561it [08:24, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
562it [08:24, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
563it [08:24, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
564it [08:26, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
565it [08:26, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
566it [08:26, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
567it [08:28, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
568it [08:29, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
569it [08:29, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
570it [08:30, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
571it [08:31, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
572it [08:31, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
573it [08:32, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
574it [08:34, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
575it [08:34, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
576it [08:36, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
577it [08:37, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
578it [08:37, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
579it [08:38, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
580it [08:38, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
581it [08:39, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
582it [08:40, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
583it [08:41, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
584it [08:41, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
586it [08:42, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
588it [08:43, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
589it [08:44, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
590it [08:45, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
591it [08:46, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
592it [08:46, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
594it [08:48, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
595it [08:48, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
596it [08:49, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
598it [08:50, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
599it [08:51, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
600it [08:51, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
601it [08:52, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
602it [08:52, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
603it [08:53, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
604it [08:53, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
605it [08:54, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
606it [08:54, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
607it [08:55, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
608it [08:55, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
609it [08:56, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
610it [08:57, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
612it [08:57, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
613it [08:58, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
614it [08:59, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
615it [09:00, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
617it [09:01, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
618it [09:01, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
620it [09:02, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
621it [09:02, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
622it [09:03, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
623it [09:04, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
624it [09:04, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
625it [09:05, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
626it [09:06, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
628it [09:07, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
629it [09:08, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
630it [09:09, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
631it [09:09, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
632it [09:10, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
633it [09:11, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
634it [09:13, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
635it [09:14, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
637it [09:14, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
638it [09:15, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
639it [09:17, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
640it [09:18, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
641it [09:18, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
642it [09:21, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
643it [09:21, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
644it [09:22, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
645it [09:23, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
646it [09:23, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
647it [09:25, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
648it [09:26, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
649it [09:26, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
650it [09:26, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
651it [09:27, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
652it [09:29, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
653it [09:30, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
654it [09:31, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
656it [09:32, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
658it [09:32, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
659it [09:34, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
660it [09:34, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
661it [09:35, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
663it [09:36, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
664it [09:36, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
665it [09:36, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
666it [09:37, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
667it [09:38, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
668it [09:38, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
669it [09:40, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
670it [09:40, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
671it [09:41, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
672it [09:42, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
673it [09:42, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
675it [09:44, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
676it [09:45, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
677it [09:45, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
678it [09:46, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
679it [09:46, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
681it [09:48, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
682it [09:48, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
683it [09:49, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
684it [09:49, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
685it [09:50, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
687it [09:52, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
688it [09:52, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
689it [09:53, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
690it [09:53, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
692it [09:54, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
693it [09:55, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
694it [09:56, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
696it [09:57, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
697it [09:58, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
698it [09:58, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
699it [09:58, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
700it [10:00, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
702it [10:00, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
703it [10:01, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
704it [10:02, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
705it [10:02, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
706it [10:03, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
707it [10:04, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
709it [10:05, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
710it [10:05, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
711it [10:06, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
712it [10:07, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
714it [10:07, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
715it [10:08, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
716it [10:09, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
718it [10:09, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
719it [10:10, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
720it [10:11, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
721it [10:12, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
722it [10:12, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
724it [10:13, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
726it [10:15, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
727it [10:15, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
728it [10:16, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
729it [10:16, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
730it [10:17, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
731it [10:17, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
732it [10:19, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
734it [10:19, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
735it [10:20, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
736it [10:20, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
737it [10:21, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
738it [10:22, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
739it [10:22, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
740it [10:23, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
741it [10:24, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
742it [10:26, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
743it [10:27, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
744it [10:28, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
745it [10:30, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
746it [10:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
747it [10:34, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
748it [10:34, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
749it [10:34, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
750it [10:36, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
751it [10:36, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
752it [10:38, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
753it [10:39, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
754it [10:40, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
756it [10:40, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
758it [10:41, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
759it [10:42, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
760it [10:44, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
762it [10:45, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
763it [10:45, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
764it [10:46, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
766it [10:48, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
767it [10:48, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
768it [10:49, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
770it [10:50, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
771it [10:51, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
772it [10:52, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
774it [10:52, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
775it [10:53, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
776it [10:53, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
777it [10:53, 2.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
778it [10:55, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
779it [10:55, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
780it [10:56, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
782it [10:56, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
783it [10:57, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
784it [10:58, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
785it [10:58, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
786it [10:59, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
787it [10:59, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
788it [11:00, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
789it [11:00, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
790it [11:01, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
791it [11:01, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
792it [11:02, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
793it [11:03, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
794it [11:04, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
795it [11:05, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
797it [11:05, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
798it [11:07, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
799it [11:07, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
800it [11:08, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
801it [11:09, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
803it [11:09, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
804it [11:10, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
805it [11:11, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
806it [11:12, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
807it [11:12, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
808it [11:13, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
809it [11:14, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
810it [11:15, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
811it [11:16, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
812it [11:16, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
813it [11:17, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
814it [11:17, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
815it [11:18, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
816it [11:18, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
817it [11:19, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
818it [11:20, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
819it [11:21, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
822it [11:22, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
823it [11:23, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
824it [11:23, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
825it [11:25, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
826it [11:25, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
827it [11:25, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
828it [11:25, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
829it [11:26, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
830it [11:26, 2.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
831it [11:28, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
832it [11:28, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
833it [11:29, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
834it [11:29, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
835it [11:29, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
836it [11:31, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
837it [11:32, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
838it [11:32, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
839it [11:32, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
841it [11:33, 2.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
842it [11:34, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
843it [11:35, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
844it [11:35, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
846it [11:36, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
847it [11:37, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
849it [11:38, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
850it [11:38, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
851it [11:39, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
852it [11:40, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
853it [11:40, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
854it [11:41, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
856it [11:42, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
857it [11:42, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
858it [11:43, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
859it [11:43, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
860it [11:44, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
862it [11:45, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
863it [11:46, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
864it [11:46, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
865it [11:47, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
866it [11:47, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
867it [11:48, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
869it [11:49, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
870it [11:50, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
871it [11:50, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
872it [11:51, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
873it [11:51, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
874it [11:52, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
875it [11:56, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
876it [11:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
877it [11:59, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
878it [12:00, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
879it [12:01, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
880it [12:01, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
881it [12:02, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
882it [12:03, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
883it [12:04, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
884it [12:04, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
885it [12:05, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
886it [12:06, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
887it [12:06, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
889it [12:07, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
890it [12:08, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
891it [12:08, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
892it [12:09, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
893it [12:10, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
894it [12:11, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
895it [12:11, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
896it [12:13, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
898it [12:13, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
900it [12:15, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
901it [12:15, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
903it [12:16, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
905it [12:17, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
906it [12:18, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
907it [12:18, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
908it [12:19, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
909it [12:19, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
910it [12:19, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
911it [12:20, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
912it [12:21, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
913it [12:22, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
914it [12:22, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
916it [12:23, 2.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
917it [12:23, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
918it [12:25, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
919it [12:25, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
920it [12:25, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
921it [12:26, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
922it [12:26, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
923it [12:27, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
924it [12:28, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
926it [12:28, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
927it [12:29, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
928it [12:30, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
929it [12:30, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
930it [12:31, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
931it [12:31, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
932it [12:33, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
933it [12:33, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
934it [12:34, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
935it [12:35, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
936it [12:35, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
937it [12:36, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
938it [12:37, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
939it [12:37, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
940it [12:38, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
941it [12:38, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
943it [12:38, 2.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
944it [12:39, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
945it [12:41, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
946it [12:42, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
947it [12:43, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
948it [12:43, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
949it [12:44, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
950it [12:44, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
951it [12:45, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
952it [12:46, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
953it [12:46, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
954it [12:47, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
955it [12:48, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
957it [12:48, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
958it [12:50, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
959it [12:51, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
960it [12:51, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
961it [12:51, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
962it [12:51, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
963it [12:52, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
964it [12:54, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
965it [12:55, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
966it [12:55, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
967it [12:57, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
968it [12:58, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
969it [13:00, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
970it [13:00, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
971it [13:01, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
972it [13:02, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
973it [13:03, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
974it [13:03, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
975it [13:04, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
976it [13:05, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
977it [13:06, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
978it [13:07, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
979it [13:07, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
980it [13:08, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
981it [13:09, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
983it [13:10, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
984it [13:11, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
985it [13:12, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
986it [13:12, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
987it [13:13, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
989it [13:14, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
991it [13:15, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
992it [13:15, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
993it [13:16, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
995it [13:17, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
996it [13:18, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
997it [13:18, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
998it [13:19, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
999it [13:19, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1000it [13:19, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1001it [13:21, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1002it [13:21, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1003it [13:21, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1004it [13:22, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1005it [13:23, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1006it [13:23, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1007it [13:23, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1008it [13:24, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1009it [13:24, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1010it [13:25, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1011it [13:25, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1012it [13:26, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1013it [13:27, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1014it [13:28, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1016it [13:29, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1017it [13:30, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1018it [13:32, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1019it [13:32, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1020it [13:33, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1021it [13:34, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1022it [13:34, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1023it [13:35, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1024it [13:35, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1025it [13:36, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1026it [13:36, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1027it [13:37, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1028it [13:37, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1029it [13:38, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1030it [13:39, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1031it [13:40, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1032it [13:40, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1033it [13:40, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1034it [13:41, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1036it [13:43, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1037it [13:44, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1038it [13:44, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1039it [13:45, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1040it [13:46, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1041it [13:47, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1042it [13:48, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1043it [13:49, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1045it [13:50, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1047it [13:50, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1048it [13:51, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1049it [13:51, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1050it [13:52, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1051it [13:53, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1053it [13:53, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1054it [13:54, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1055it [13:55, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1056it [13:55, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1057it [13:55, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1058it [13:57, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1059it [13:57, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1060it [13:57, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1061it [13:58, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1062it [13:59, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1063it [13:59, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1064it [14:00, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1065it [14:01, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1067it [14:01, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1068it [14:03, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1069it [14:03, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1070it [14:05, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1071it [14:05, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1072it [14:05, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1073it [14:05, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1074it [14:07, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1076it [14:08, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1077it [14:08, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1078it [14:09, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1079it [14:10, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1080it [14:11, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1081it [14:11, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1084it [14:12, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1085it [14:12, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1086it [14:13, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1087it [14:15, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1088it [14:15, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1089it [14:16, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1090it [14:16, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1091it [14:17, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1092it [14:18, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1093it [14:19, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1094it [14:20, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1095it [14:20, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1097it [14:21, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1098it [14:22, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1099it [14:22, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1100it [14:23, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1101it [14:23, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1102it [14:24, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1103it [14:24, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1104it [14:26, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1105it [14:26, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1106it [14:26, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1107it [14:28, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1109it [14:30, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1111it [14:30, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1113it [14:32, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1114it [14:32, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1115it [14:33, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1116it [14:33, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1117it [14:34, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1118it [14:35, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1119it [14:35, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1120it [14:36, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1121it [14:36, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1122it [14:38, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1123it [14:38, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1124it [14:38, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1125it [14:40, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1126it [14:41, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1128it [14:42, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1131it [14:43, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1132it [14:43, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1133it [14:44, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1134it [14:45, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1135it [14:46, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1136it [14:46, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1137it [14:47, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1138it [14:47, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1139it [14:48, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1140it [14:48, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1141it [14:50, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1142it [14:51, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1143it [14:51, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1144it [14:52, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1147it [14:53, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1149it [14:54, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1150it [14:55, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1152it [14:55, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1153it [14:56, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1154it [14:57, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1155it [14:58, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1157it [14:59, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1158it [14:59, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1159it [15:01, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1160it [15:03, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1161it [15:03, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1162it [15:04, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1163it [15:04, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1164it [15:05, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1165it [15:07, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1166it [15:08, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1167it [15:08, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1168it [15:09, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1169it [15:09, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1170it [15:10, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1171it [15:11, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1172it [15:12, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1173it [15:13, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1174it [15:13, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1175it [15:13, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1177it [15:14, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1178it [15:16, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1179it [15:16, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1181it [15:16, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1182it [15:17, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1183it [15:19, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1184it [15:20, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1185it [15:21, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1186it [15:21, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1187it [15:23, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1188it [15:23, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1189it [15:25, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1190it [15:27, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1191it [15:27, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1192it [15:29, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1193it [15:30, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1194it [15:31, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1195it [15:31, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1196it [15:32, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1197it [15:33, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1198it [15:33, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1200it [15:33, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1201it [15:34, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1202it [15:35, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1203it [15:36, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1205it [15:37, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1206it [15:38, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1207it [15:38, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1208it [15:39, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1209it [15:40, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1210it [15:40, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1211it [15:41, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1213it [15:42, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1214it [15:42, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1215it [15:44, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1216it [15:45, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1217it [15:45, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1218it [15:46, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1219it [15:46, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1220it [15:47, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1221it [15:47, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1222it [15:48, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1223it [15:49, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1225it [15:49, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1226it [15:50, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1227it [15:50, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1228it [15:50, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1229it [15:52, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1230it [15:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1232it [15:53, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1233it [15:53, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1234it [15:54, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1235it [15:55, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1236it [15:56, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1237it [15:56, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1238it [15:57, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1239it [15:59, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1240it [15:59, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1241it [15:59, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1242it [16:00, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1243it [16:00, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1244it [16:02, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1245it [16:02, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1246it [16:02, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1247it [16:04, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1248it [16:06, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1249it [16:06, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1250it [16:08, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1251it [16:09, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1252it [16:09, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1253it [16:10, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1255it [16:14, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1257it [16:15, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1258it [16:15, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1259it [16:17, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1260it [16:20, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1261it [16:21, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1263it [16:21, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1264it [16:22, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1266it [16:23, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1267it [16:24, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1268it [16:24, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1269it [16:24, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1270it [16:25, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1271it [16:27, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1272it [16:27, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1275it [16:27, 2.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1276it [16:28, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1277it [16:30, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1279it [16:30, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1282it [16:32, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1283it [16:33, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1284it [16:33, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1285it [16:34, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1287it [16:34, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1288it [16:36, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1289it [16:36, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1290it [16:39, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1291it [16:39, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1292it [16:39, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1293it [16:40, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1294it [16:40, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1295it [16:41, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1296it [16:42, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1297it [16:43, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1298it [16:43, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1300it [16:45, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1301it [16:45, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1302it [16:47, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1303it [16:48, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1304it [16:49, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1305it [16:50, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1306it [16:51, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1308it [16:51, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1310it [16:53, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1311it [16:54, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1312it [16:55, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1313it [16:55, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1314it [16:57, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1315it [16:58, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1316it [17:00, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1317it [17:01, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1318it [17:04, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1319it [17:05, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1320it [17:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1321it [17:08, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1322it [17:08, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1323it [17:10, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1324it [17:11, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1326it [17:11, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1327it [17:13, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1329it [17:14, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1330it [17:15, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1331it [17:15, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1333it [17:16, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1334it [17:16, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1335it [17:18, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1336it [17:18, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1337it [17:19, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1339it [17:20, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1340it [17:21, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1341it [17:21, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1342it [17:22, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1343it [17:23, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1345it [17:23, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1346it [17:25, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1347it [17:26, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1348it [17:27, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1349it [17:27, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1350it [17:28, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1352it [17:29, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1353it [17:30, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1355it [17:31, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1357it [17:32, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1358it [17:32, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1359it [17:33, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1360it [17:34, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1361it [17:35, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1362it [17:35, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1363it [17:36, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1365it [17:36, 2.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1366it [17:39, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1367it [17:41, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1368it [17:42, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1369it [17:42, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1370it [17:42, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1371it [17:44, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1372it [17:45, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1373it [17:46, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1375it [17:46, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1376it [17:47, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1377it [17:48, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1379it [17:48, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1380it [17:49, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1382it [17:49, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1383it [17:50, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1384it [17:52, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1386it [17:52, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1388it [17:52, 2.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1389it [17:53, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1390it [17:54, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1391it [17:55, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1392it [17:55, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1393it [17:55, 2.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1394it [17:59, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1395it [17:59, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1396it [18:00, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1397it [18:00, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1398it [18:02, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1399it [18:03, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1400it [18:03, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1401it [18:04, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1404it [18:05, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1405it [18:07, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1406it [18:08, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1407it [18:08, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1408it [18:08, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1409it [18:09, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1410it [18:10, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1412it [18:10, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1413it [18:12, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1414it [18:12, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1415it [18:13, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1417it [18:14, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1418it [18:15, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1419it [18:16, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1421it [18:17, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1423it [18:17, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1424it [18:19, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1426it [18:19, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1427it [18:20, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1428it [18:22, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1430it [18:22, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1431it [18:22, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1432it [18:24, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1433it [18:24, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1434it [18:26, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1435it [18:26, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1436it [18:26, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1437it [18:27, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1438it [18:27, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1439it [18:29, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1440it [18:30, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1441it [18:31, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1442it [18:31, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1443it [18:31, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1445it [18:33, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1446it [18:34, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1447it [18:34, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1448it [18:34, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1449it [18:35, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1450it [18:35, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1451it [18:36, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1453it [18:38, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1454it [18:39, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1455it [18:39, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1456it [18:39, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1457it [18:40, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1458it [18:42, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1459it [18:42, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1460it [18:42, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1461it [18:44, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1462it [18:45, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1463it [18:46, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1464it [18:47, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1465it [18:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1466it [18:51, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1468it [18:51, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1469it [18:51, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1470it [18:52, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1471it [18:54, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1472it [18:56, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1473it [18:57, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1475it [18:57, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1476it [18:57, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1477it [18:59, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1478it [18:59, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1480it [19:00, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1481it [19:01, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1482it [19:02, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1483it [19:03, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1485it [19:04, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1487it [19:05, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1488it [19:05, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1489it [19:06, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1490it [19:07, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1492it [19:08, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1493it [19:09, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1494it [19:09, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1495it [19:11, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1496it [19:11, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1497it [19:12, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1499it [19:13, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1501it [19:14, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1502it [19:15, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1504it [19:15, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1505it [19:16, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1506it [19:16, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1507it [19:17, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1508it [19:18, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1509it [19:19, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1510it [19:19, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1511it [19:19, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1512it [19:19, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1513it [19:20, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1514it [19:22, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1515it [19:22, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1516it [19:23, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1517it [19:24, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1518it [19:24, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1519it [19:24, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1520it [19:26, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1522it [19:27, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1523it [19:27, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1525it [19:28, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1526it [19:29, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1527it [19:29, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1528it [19:31, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1529it [19:32, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1530it [19:32, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1531it [19:32, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1532it [19:33, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1533it [19:34, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1534it [19:36, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1535it [19:36, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1537it [19:37, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1538it [19:37, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1540it [19:41, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1541it [19:41, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1543it [19:42, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1546it [19:44, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1547it [19:45, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1548it [19:45, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1549it [19:46, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1551it [19:46, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1552it [19:48, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1553it [19:48, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1554it [19:49, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1555it [19:49, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1556it [19:50, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1557it [19:52, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1558it [19:52, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1559it [19:54, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1560it [19:54, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1562it [19:55, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1563it [19:56, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1564it [19:58, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1565it [19:59, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1566it [20:00, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1567it [20:01, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1568it [20:01, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1569it [20:03, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1570it [20:04, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1571it [20:05, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1572it [20:06, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1573it [20:07, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1574it [20:07, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1575it [20:08, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1576it [20:08, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1577it [20:08, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1578it [20:09, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1579it [20:10, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1580it [20:10, 2.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1581it [20:11, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1582it [20:12, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1583it [20:14, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1584it [20:14, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1585it [20:14, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1586it [20:15, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1587it [20:15, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1588it [20:16, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1589it [20:17, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1590it [20:17, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1591it [20:18, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1592it [20:18, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1593it [20:19, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1594it [20:20, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1595it [20:20, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1596it [20:21, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1598it [20:21, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1599it [20:22, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1600it [20:22, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1601it [20:23, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1602it [20:24, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1603it [20:24, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1604it [20:25, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1605it [20:26, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1607it [20:26, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1609it [20:27, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1610it [20:29, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1611it [20:29, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1612it [20:30, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1613it [20:30, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1614it [20:30, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1615it [20:31, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1616it [20:32, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1617it [20:33, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1619it [20:33, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1620it [20:34, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1621it [20:35, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1622it [20:35, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1623it [20:36, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1624it [20:37, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1626it [20:38, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1627it [20:38, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1628it [20:40, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1629it [20:40, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1630it [20:41, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1631it [20:41, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1632it [20:42, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1633it [20:42, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1634it [20:43, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1635it [20:44, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1636it [20:44, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1637it [20:45, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1639it [20:47, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1640it [20:48, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1641it [20:48, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1642it [20:49, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1643it [20:50, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1644it [20:52, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1645it [20:52, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1646it [20:52, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1647it [20:52, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1648it [20:53, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1649it [20:54, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1650it [20:55, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1651it [20:55, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1652it [20:56, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1653it [20:56, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1654it [20:58, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1655it [20:58, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1656it [21:00, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1657it [21:00, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1658it [21:01, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1659it [21:02, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1660it [21:03, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1661it [21:04, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1662it [21:05, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1664it [21:05, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1665it [21:06, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1666it [21:07, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1667it [21:08, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1668it [21:10, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1670it [21:11, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1671it [21:11, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1672it [21:11, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1673it [21:13, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1674it [21:14, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1675it [21:15, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1676it [21:16, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1677it [21:16, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1678it [21:16, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1679it [21:17, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1680it [21:19, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1681it [21:20, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1682it [21:22, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1683it [21:22, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1684it [21:23, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1685it [21:23, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1686it [21:24, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1687it [21:24, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1688it [21:25, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1689it [21:26, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1691it [21:27, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1693it [21:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1695it [21:31, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1696it [21:31, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1697it [21:33, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1698it [21:34, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1699it [21:34, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1700it [21:35, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1701it [21:35, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1702it [21:35, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1703it [21:37, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1704it [21:38, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1706it [21:38, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1707it [21:39, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1708it [21:41, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1709it [21:42, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1710it [21:43, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1712it [21:46, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1713it [21:46, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1714it [21:48, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1715it [21:48, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1716it [21:49, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1717it [21:51, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1719it [21:51, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1720it [21:52, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1721it [21:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1722it [21:52, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1723it [21:55, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1724it [21:55, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1726it [21:56, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1727it [21:56, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1728it [21:56, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1729it [21:58, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1732it [21:59, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1733it [22:00, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1734it [22:01, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1735it [22:02, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1736it [22:04, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1738it [22:04, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1739it [22:06, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1740it [22:07, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1743it [22:09, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1744it [22:09, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1745it [22:09, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1746it [22:10, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1747it [22:10, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1748it [22:12, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1749it [22:12, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1750it [22:13, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1751it [22:13, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1752it [22:14, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1753it [22:15, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1754it [22:15, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1755it [22:15, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1756it [22:16, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1757it [22:16, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1758it [22:17, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1759it [22:18, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1760it [22:18, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1762it [22:20, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1763it [22:21, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1764it [22:22, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1765it [22:22, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1767it [22:23, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1768it [22:24, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1769it [22:26, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1770it [22:26, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1771it [22:26, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1772it [22:27, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1773it [22:27, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1774it [22:30, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1775it [22:30, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1776it [22:31, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1777it [22:32, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1778it [22:33, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1779it [22:33, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1780it [22:34, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1781it [22:35, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1782it [22:36, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1783it [22:36, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1784it [22:37, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1785it [22:38, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1786it [22:40, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1787it [22:40, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1788it [22:40, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1789it [22:41, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1790it [22:42, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1791it [22:43, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1792it [22:43, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1793it [22:44, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1794it [22:45, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1795it [22:45, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1796it [22:46, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1797it [22:46, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1798it [22:47, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1799it [22:48, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1801it [22:48, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1802it [22:49, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1803it [22:49, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1804it [22:50, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1805it [22:50, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1806it [22:51, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1807it [22:52, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1808it [22:53, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1809it [22:53, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1810it [22:54, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1811it [22:54, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1812it [22:55, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1813it [22:56, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1814it [22:57, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1815it [22:57, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1816it [22:58, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1817it [22:58, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1818it [22:58, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1819it [22:59, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1820it [23:00, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1821it [23:01, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1822it [23:01, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1823it [23:02, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1824it [23:03, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1825it [23:04, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1827it [23:04, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1828it [23:05, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1829it [23:06, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1831it [23:07, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1832it [23:07, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1833it [23:09, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1834it [23:10, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1835it [23:10, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1836it [23:11, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1837it [23:11, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1838it [23:11, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1839it [23:12, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1840it [23:13, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1841it [23:14, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1842it [23:14, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1843it [23:16, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1844it [23:16, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1845it [23:18, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1846it [23:18, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1847it [23:19, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1848it [23:19, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1849it [23:22, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1850it [23:22, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1851it [23:23, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1853it [23:23, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1854it [23:23, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1855it [23:25, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1856it [23:25, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1857it [23:26, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1858it [23:26, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1859it [23:26, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1860it [23:27, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1861it [23:30, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1862it [23:30, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1863it [23:30, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1864it [23:30, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1865it [23:31, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1866it [23:32, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1867it [23:34, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1870it [23:34, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1871it [23:35, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1872it [23:36, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1873it [23:36, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1874it [23:38, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1876it [23:39, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1877it [23:39, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1878it [23:39, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1879it [23:40, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1880it [23:40, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1881it [23:41, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1882it [23:41, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1883it [23:42, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1884it [23:43, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1885it [23:43, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1886it [23:44, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1887it [23:44, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1888it [23:44, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1890it [23:46, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1891it [23:47, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1892it [23:48, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1895it [23:48, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1896it [23:49, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1897it [23:51, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1898it [23:51, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1899it [23:52, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1901it [23:53, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1902it [23:53, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1903it [23:54, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1904it [23:55, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1905it [23:55, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1906it [23:56, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1908it [23:57, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1910it [23:58, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1912it [23:59, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1913it [24:00, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1915it [24:00, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1916it [24:01, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1917it [24:01, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1918it [24:02, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1919it [24:03, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1921it [24:04, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1922it [24:04, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1924it [24:05, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1925it [24:06, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1927it [24:07, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1928it [24:07, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1929it [24:07, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1930it [24:08, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1931it [24:08, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1932it [24:09, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1933it [24:09, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1934it [24:10, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1936it [24:11, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1937it [24:11, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1938it [24:12, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1940it [24:13, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1941it [24:14, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1942it [24:14, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1944it [24:16, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1945it [24:16, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1946it [24:16, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1947it [24:17, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1949it [24:18, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1950it [24:19, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1951it [24:19, 2.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1952it [24:20, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1953it [24:20, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1954it [24:21, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1955it [24:21, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1956it [24:22, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1957it [24:23, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1958it [24:23, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1959it [24:24, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1960it [24:25, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1961it [24:26, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1962it [24:26, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1963it [24:27, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1964it [24:27, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1965it [24:28, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1966it [24:29, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1967it [24:29, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1968it [24:30, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1969it [24:30, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1970it [24:31, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1971it [24:32, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1973it [24:32, 2.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1974it [24:33, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1975it [24:35, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1976it [24:35, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1977it [24:36, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1978it [24:37, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1980it [24:40, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1982it [24:40, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1983it [24:40, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1984it [24:41, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1985it [24:41, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1986it [24:42, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1987it [24:43, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1988it [24:43, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1989it [24:44, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1990it [24:44, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1991it [24:45, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1992it [24:45, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1993it [24:46, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1994it [24:47, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1995it [24:47, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1997it [24:48, 2.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1998it [24:49, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
1999it [24:51, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2000it [24:52, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2002it [24:52, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2003it [24:57, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2004it [24:59, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2005it [24:59, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2006it [24:59, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2007it [25:04, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2008it [25:04, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2009it [25:05, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2010it [25:05, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2011it [25:07, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2014it [25:07, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2015it [25:08, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2016it [25:09, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2017it [25:10, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2018it [25:10, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2019it [25:10, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2020it [25:10, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2021it [25:12, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2022it [25:12, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2023it [25:13, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2024it [25:13, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2025it [25:14, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2026it [25:15, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2027it [25:15, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2028it [25:16, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2029it [25:19, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2031it [25:19, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2032it [25:20, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2033it [25:21, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2034it [25:22, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2035it [25:24, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2037it [25:25, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2038it [25:27, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2039it [25:28, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2040it [25:30, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2041it [25:30, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2042it [25:33, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2043it [25:34, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2044it [25:35, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2045it [25:37, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2046it [25:39, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2047it [25:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2049it [25:41, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2050it [25:41, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2051it [25:43, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2053it [25:44, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2055it [25:44, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2056it [25:46, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2057it [25:46, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2058it [25:47, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2061it [25:48, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2062it [25:49, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2063it [25:49, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2064it [25:50, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2065it [25:50, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2067it [25:51, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2068it [25:51, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2069it [25:53, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2072it [25:53, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2073it [25:55, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2074it [25:56, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2075it [25:57, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2076it [25:58, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2077it [25:59, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2078it [26:01, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2079it [26:03, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2080it [26:03, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2081it [26:05, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2082it [26:06, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2083it [26:07, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2085it [26:08, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2086it [26:08, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2087it [26:09, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2088it [26:11, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2089it [26:11, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2090it [26:11, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2091it [26:12, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2092it [26:13, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2093it [26:14, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2094it [26:14, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2095it [26:15, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2096it [26:16, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2097it [26:18, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2098it [26:19, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2099it [26:19, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2101it [26:21, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2102it [26:23, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2103it [26:24, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2104it [26:24, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2105it [26:24, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2106it [26:25, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2107it [26:26, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2109it [26:28, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2110it [26:29, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2111it [26:30, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2113it [26:30, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2114it [26:31, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2115it [26:32, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2116it [26:33, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2117it [26:33, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2118it [26:34, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2119it [26:35, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2120it [26:35, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2121it [26:36, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2123it [26:36, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2124it [26:37, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2125it [26:38, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2126it [26:38, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2127it [26:39, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2128it [26:40, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2130it [26:41, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2131it [26:41, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2132it [26:42, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2133it [26:42, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2134it [26:45, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2135it [26:46, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2137it [26:47, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2138it [26:47, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2139it [26:48, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2140it [26:50, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2141it [26:51, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2143it [26:51, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2144it [26:52, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2145it [26:52, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2146it [26:54, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2148it [26:55, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2149it [26:55, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2150it [26:56, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2151it [26:57, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2152it [26:58, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2153it [26:59, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2155it [26:59, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2156it [27:00, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2157it [27:01, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2158it [27:02, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2159it [27:02, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2160it [27:03, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2161it [27:04, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2162it [27:06, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2163it [27:07, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2164it [27:09, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2166it [27:09, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2167it [27:13, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2168it [27:14, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2169it [27:14, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2170it [27:15, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2171it [27:15, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2172it [27:16, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2173it [27:17, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2174it [27:17, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2175it [27:18, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2176it [27:18, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2177it [27:19, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2178it [27:20, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2180it [27:21, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2181it [27:21, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2182it [27:21, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2183it [27:22, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2184it [27:23, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2185it [27:24, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2186it [27:24, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2187it [27:25, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2188it [27:26, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2189it [27:26, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2190it [27:27, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2191it [27:28, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2192it [27:29, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2193it [27:30, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2194it [27:30, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2195it [27:30, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2197it [27:32, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2198it [27:32, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2199it [27:34, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2200it [27:35, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2201it [27:36, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2202it [27:37, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2203it [27:38, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2204it [27:40, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2205it [27:40, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2206it [27:43, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2207it [27:45, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2208it [27:45, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2209it [27:46, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2210it [27:48, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2211it [27:48, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2212it [27:49, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2213it [27:49, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2214it [27:51, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2215it [27:51, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2216it [27:52, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2217it [27:52, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2218it [27:53, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2219it [27:54, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2220it [27:56, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2222it [27:56, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2223it [27:57, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2224it [27:57, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2225it [27:59, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2226it [28:02, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2227it [28:02, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2228it [28:02, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2230it [28:05, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2231it [28:06, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2232it [28:07, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2233it [28:08, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2234it [28:08, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2235it [28:08, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2236it [28:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2237it [28:12, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2238it [28:13, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2240it [28:13, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2242it [28:15, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2243it [28:16, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2244it [28:17, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2245it [28:18, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2246it [28:18, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2247it [28:19, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2249it [28:20, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2250it [28:21, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2251it [28:21, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2252it [28:22, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2253it [28:23, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2254it [28:24, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2255it [28:24, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2256it [28:25, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2257it [28:25, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2258it [28:27, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2259it [28:28, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2260it [28:29, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2262it [28:30, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2263it [28:32, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2265it [28:33, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2266it [28:35, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2267it [28:36, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2268it [28:36, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2269it [28:37, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2270it [28:37, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2271it [28:38, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2272it [28:39, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2273it [28:40, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2274it [28:40, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2275it [28:41, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2276it [28:42, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2277it [28:42, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2278it [28:43, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2279it [28:43, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2280it [28:43, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2281it [28:44, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2282it [28:46, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2283it [28:46, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2284it [28:47, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2285it [28:47, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2286it [28:48, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2287it [28:49, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2288it [28:51, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2291it [28:51, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2292it [28:53, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2293it [28:54, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2294it [28:57, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2295it [28:58, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2296it [28:59, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2297it [28:59, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2298it [29:01, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2299it [29:02, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2300it [29:02, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2301it [29:03, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2302it [29:04, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2303it [29:05, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2304it [29:05, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2305it [29:06, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2306it [29:07, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2309it [29:08, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2310it [29:10, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2311it [29:10, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2312it [29:11, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2314it [29:11, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2315it [29:13, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2316it [29:13, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2318it [29:13, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2319it [29:14, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2320it [29:17, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2321it [29:17, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2322it [29:18, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2323it [29:18, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2324it [29:18, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2325it [29:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2326it [29:22, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2327it [29:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2329it [29:26, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2330it [29:27, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2331it [29:27, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2332it [29:28, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2333it [29:28, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2334it [29:29, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2335it [29:30, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2336it [29:30, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2337it [29:31, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2338it [29:31, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2339it [29:32, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2341it [29:33, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2342it [29:34, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2343it [29:35, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2344it [29:36, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2346it [29:38, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2347it [29:40, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2348it [29:42, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2349it [29:42, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2350it [29:43, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2351it [29:43, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2352it [29:45, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2353it [29:46, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2354it [29:47, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2355it [29:47, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2357it [29:49, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2358it [29:49, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2360it [29:50, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2361it [29:51, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2362it [29:51, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2363it [29:53, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2364it [29:54, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2365it [29:54, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2366it [29:55, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2368it [29:56, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2369it [29:57, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2370it [29:58, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2371it [29:58, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2372it [29:59, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2373it [30:01, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2374it [30:01, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2375it [30:02, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2376it [30:02, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2377it [30:03, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2378it [30:03, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2379it [30:04, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2380it [30:06, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2381it [30:07, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2383it [30:08, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2384it [30:08, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2385it [30:09, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2386it [30:10, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2387it [30:12, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2389it [30:12, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2391it [30:13, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2392it [30:14, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2393it [30:15, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2395it [30:15, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2396it [30:15, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2397it [30:16, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2398it [30:17, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2399it [30:18, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2400it [30:18, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2401it [30:19, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2402it [30:19, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2403it [30:20, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2404it [30:21, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2405it [30:21, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2406it [30:21, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2407it [30:22, 2.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2408it [30:23, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2409it [30:23, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2410it [30:24, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2411it [30:25, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2412it [30:25, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2414it [30:26, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2415it [30:28, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2416it [30:30, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2417it [30:30, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2418it [30:30, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2419it [30:32, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2420it [30:33, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2421it [30:33, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2422it [30:33, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2423it [30:34, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2424it [30:35, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2425it [30:36, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2426it [30:37, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2427it [30:37, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2428it [30:38, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2429it [30:38, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2430it [30:41, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2431it [30:41, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2433it [30:42, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2434it [30:42, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2435it [30:44, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2436it [30:44, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2438it [30:45, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2439it [30:47, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2440it [30:47, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2441it [30:48, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2442it [30:48, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2444it [30:50, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2445it [30:51, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2447it [30:51, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2448it [30:52, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2449it [30:52, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2450it [30:53, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2451it [30:54, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2452it [30:54, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2453it [30:55, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2454it [30:55, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2455it [30:56, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2456it [30:56, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2457it [30:57, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2458it [30:57, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2459it [30:58, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2460it [30:58, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2461it [30:59, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2462it [31:00, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2464it [31:00, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2465it [31:01, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2466it [31:02, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2467it [31:02, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2468it [31:03, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2469it [31:03, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2470it [31:04, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2471it [31:05, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2473it [31:06, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2474it [31:06, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2475it [31:06, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2477it [31:09, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2479it [31:09, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2480it [31:09, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2481it [31:09, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2482it [31:10, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2483it [31:12, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2484it [31:13, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2485it [31:13, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2486it [31:13, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2487it [31:15, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2488it [31:16, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2489it [31:16, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2490it [31:19, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2492it [31:19, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2494it [31:19, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2495it [31:19, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2496it [31:21, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2498it [31:22, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2499it [31:23, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2500it [31:24, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2501it [31:24, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2502it [31:25, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2503it [31:26, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2504it [31:26, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2505it [31:28, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2506it [31:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2507it [31:30, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2508it [31:30, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2509it [31:31, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2510it [31:31, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2511it [31:33, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2512it [31:34, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2513it [31:34, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2514it [31:34, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2515it [31:35, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2516it [31:35, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2517it [31:36, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2518it [31:36, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2519it [31:36, 2.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2520it [31:38, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2523it [31:39, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2524it [31:39, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2525it [31:40, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2527it [31:41, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2529it [31:42, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2530it [31:42, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2531it [31:43, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2532it [31:43, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2533it [31:43, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2535it [31:44, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2536it [31:45, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2537it [31:45, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2538it [31:46, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2539it [31:47, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2540it [31:48, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2542it [31:48, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2543it [31:49, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2544it [31:50, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2545it [31:51, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2546it [31:52, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2547it [31:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2548it [31:52, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2550it [31:53, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2551it [31:54, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2552it [31:54, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2553it [31:55, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2554it [31:55, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2555it [31:56, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2556it [31:57, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2557it [31:57, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2558it [31:58, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2559it [31:59, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2560it [32:00, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2561it [32:00, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2562it [32:01, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2563it [32:02, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2564it [32:02, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2565it [32:03, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2567it [32:03, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2568it [32:04, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2569it [32:05, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2570it [32:06, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2572it [32:06, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2573it [32:06, 2.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2574it [32:08, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2576it [32:09, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2578it [32:10, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2579it [32:11, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2582it [32:12, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2583it [32:12, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2584it [32:13, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2585it [32:13, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2587it [32:15, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2589it [32:15, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2590it [32:16, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2591it [32:17, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2592it [32:17, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2593it [32:20, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2594it [32:20, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2595it [32:21, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2596it [32:21, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2598it [32:24, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2599it [32:24, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2600it [32:25, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2602it [32:25, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2603it [32:26, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2604it [32:28, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2605it [32:28, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2606it [32:29, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2608it [32:29, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2609it [32:30, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2610it [32:30, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2611it [32:31, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2612it [32:32, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2613it [32:32, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2616it [32:34, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2617it [32:34, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2618it [32:35, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2619it [32:35, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2620it [32:35, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2621it [32:39, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2623it [32:39, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2624it [32:40, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2625it [32:40, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2626it [32:41, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2627it [32:42, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2629it [32:43, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2631it [32:44, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2632it [32:44, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2634it [32:45, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2635it [32:46, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2636it [32:47, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2637it [32:47, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2638it [32:48, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2639it [32:48, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2640it [32:49, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2641it [32:51, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2642it [32:51, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2643it [32:52, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2646it [32:52, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2648it [32:55, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2649it [32:56, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2650it [32:57, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2652it [32:57, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2653it [32:58, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2654it [32:59, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2655it [33:00, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2656it [33:00, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2657it [33:01, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2658it [33:02, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2659it [33:02, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2661it [33:03, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2662it [33:04, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2663it [33:05, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2664it [33:05, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2665it [33:06, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2666it [33:06, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2667it [33:06, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2668it [33:07, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2669it [33:08, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2670it [33:10, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2671it [33:10, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2673it [33:11, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2674it [33:13, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2675it [33:14, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2676it [33:14, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2677it [33:16, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2678it [33:16, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2679it [33:19, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2680it [33:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2681it [33:21, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2682it [33:22, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2683it [33:22, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2684it [33:22, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2685it [33:24, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2686it [33:25, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2687it [33:25, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2688it [33:26, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2689it [33:27, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2690it [33:27, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2691it [33:27, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2692it [33:29, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2693it [33:30, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2694it [33:30, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2695it [33:30, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2697it [33:32, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2698it [33:32, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2699it [33:34, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2700it [33:34, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2701it [33:34, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2702it [33:35, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2703it [33:35, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2704it [33:37, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2705it [33:37, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2707it [33:37, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2708it [33:38, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2709it [33:40, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2710it [33:41, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2711it [33:41, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2712it [33:42, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2713it [33:42, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2714it [33:42, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2715it [33:43, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2716it [33:44, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2718it [33:45, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2719it [33:46, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2720it [33:46, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2721it [33:47, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2722it [33:47, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2723it [33:47, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2724it [33:49, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2725it [33:50, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2726it [33:53, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2728it [33:53, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2729it [33:54, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2730it [33:55, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2731it [33:55, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2732it [33:57, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2733it [33:57, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2734it [33:58, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2735it [33:59, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2736it [34:00, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2738it [34:00, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2739it [34:01, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2740it [34:02, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2741it [34:02, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2742it [34:03, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2743it [34:05, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2744it [34:05, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2745it [34:06, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2746it [34:06, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2747it [34:07, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2748it [34:07, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2749it [34:08, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2750it [34:08, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2751it [34:10, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2752it [34:10, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2753it [34:11, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2754it [34:11, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2755it [34:12, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2756it [34:12, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2757it [34:14, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2759it [34:14, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2760it [34:15, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2761it [34:16, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2763it [34:17, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2764it [34:17, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2765it [34:17, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2766it [34:18, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2767it [34:20, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2769it [34:21, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2770it [34:21, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2771it [34:22, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2772it [34:22, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2773it [34:23, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2774it [34:24, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2775it [34:24, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2776it [34:25, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2779it [34:26, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2780it [34:26, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2781it [34:27, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2782it [34:28, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2783it [34:28, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2784it [34:28, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2785it [34:30, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2786it [34:31, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2787it [34:31, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2788it [34:31, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2789it [34:32, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2790it [34:33, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2791it [34:34, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2792it [34:34, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2793it [34:34, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2795it [34:35, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2796it [34:36, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2798it [34:37, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2799it [34:38, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2800it [34:38, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2801it [34:39, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2802it [34:39, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2804it [34:40, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2805it [34:41, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2806it [34:41, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2807it [34:42, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2808it [34:42, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2809it [34:42, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2811it [34:43, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2812it [34:44, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2813it [34:44, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2814it [34:45, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2817it [34:46, 3.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2818it [34:47, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2819it [34:47, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2820it [34:48, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2821it [34:48, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2822it [34:49, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2823it [34:50, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2824it [34:51, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2825it [34:51, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2826it [34:52, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2827it [34:53, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2828it [34:53, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2829it [34:54, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2830it [34:56, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2831it [34:56, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2832it [34:58, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2833it [34:58, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2834it [34:58, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2835it [35:01, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2836it [35:02, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2837it [35:04, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2839it [35:05, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2840it [35:05, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2841it [35:09, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2842it [35:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2843it [35:10, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2844it [35:12, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2845it [35:12, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2846it [35:13, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2847it [35:13, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2848it [35:14, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2849it [35:14, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2850it [35:16, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2851it [35:16, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2853it [35:17, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2854it [35:17, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2855it [35:17, 2.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2856it [35:19, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2857it [35:20, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2858it [35:20, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2859it [35:21, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2860it [35:21, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2861it [35:22, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2862it [35:23, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2863it [35:24, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2865it [35:25, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2867it [35:26, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2868it [35:26, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2869it [35:27, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2871it [35:28, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2872it [35:28, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2873it [35:29, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2874it [35:31, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2876it [35:31, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2877it [35:31, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2879it [35:33, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2880it [35:34, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2881it [35:35, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2882it [35:35, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2883it [35:35, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2884it [35:36, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2885it [35:37, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2887it [35:38, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2888it [35:38, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2889it [35:39, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2890it [35:40, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2891it [35:40, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2892it [35:40, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2893it [35:41, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2894it [35:42, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2895it [35:44, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2896it [35:44, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2897it [35:44, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2898it [35:44, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2900it [35:45, 2.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2901it [35:46, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2902it [35:47, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2903it [35:47, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2905it [35:48, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2906it [35:48, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2907it [35:49, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2908it [35:50, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2909it [35:50, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2910it [35:50, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2911it [35:50, 2.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2912it [35:52, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2913it [35:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2914it [35:53, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2915it [35:54, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2916it [35:55, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2917it [35:55, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2918it [35:55, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2919it [35:57, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2920it [35:58, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2921it [35:58, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2922it [35:59, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2923it [36:00, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2924it [36:01, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2925it [36:01, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2926it [36:02, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2927it [36:03, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2929it [36:03, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2930it [36:04, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2932it [36:06, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2933it [36:06, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2934it [36:06, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2935it [36:07, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2936it [36:07, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2938it [36:09, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2939it [36:09, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2940it [36:10, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2942it [36:10, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2943it [36:10, 2.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2944it [36:13, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2945it [36:14, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2946it [36:15, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2948it [36:18, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2949it [36:18, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2950it [36:19, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2952it [36:19, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2953it [36:21, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2954it [36:21, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2955it [36:22, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2958it [36:25, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2959it [36:25, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2960it [36:26, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2961it [36:27, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2962it [36:28, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2963it [36:29, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2964it [36:29, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2965it [36:30, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2966it [36:30, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2967it [36:32, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2968it [36:32, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2969it [36:34, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2970it [36:35, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2971it [36:36, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2972it [36:38, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2973it [36:38, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2974it [36:39, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2975it [36:39, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2976it [36:40, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2977it [36:41, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2978it [36:42, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2979it [36:43, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2980it [36:44, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2981it [36:45, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2982it [36:45, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2984it [36:45, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2985it [36:46, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2986it [36:47, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2988it [36:49, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2989it [36:49, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2990it [36:49, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2991it [36:50, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2992it [36:50, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2993it [36:51, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2994it [36:53, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2996it [36:53, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2997it [36:54, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2998it [36:54, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
2999it [36:55, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3000it [36:56, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3001it [36:56, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3003it [36:57, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3004it [36:57, 2.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3005it [36:58, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3006it [36:59, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3007it [37:00, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3009it [37:00, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3010it [37:01, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3011it [37:02, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3012it [37:02, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3013it [37:03, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3014it [37:03, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3016it [37:03, 2.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3017it [37:06, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3018it [37:07, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3019it [37:09, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3020it [37:09, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3022it [37:10, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3023it [37:10, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3024it [37:12, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3025it [37:12, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3026it [37:13, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3027it [37:13, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3028it [37:14, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3029it [37:16, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3030it [37:17, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3031it [37:19, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3033it [37:19, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3035it [37:19, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3036it [37:19, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3037it [37:23, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3038it [37:23, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3039it [37:24, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3040it [37:24, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3041it [37:24, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3042it [37:26, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3043it [37:27, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3045it [37:28, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3048it [37:29, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3049it [37:30, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3051it [37:30, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3052it [37:31, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3053it [37:32, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3054it [37:32, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3055it [37:32, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3056it [37:33, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3057it [37:34, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3059it [37:35, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3060it [37:35, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3062it [37:37, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3063it [37:37, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3065it [37:38, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3066it [37:39, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3067it [37:40, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3068it [37:42, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3069it [37:42, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3070it [37:43, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3071it [37:44, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3072it [37:44, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3073it [37:45, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3074it [37:46, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3075it [37:46, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3076it [37:47, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3077it [37:47, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3078it [37:48, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3079it [37:49, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3080it [37:51, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3082it [37:51, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3083it [37:52, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3084it [37:52, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3085it [37:54, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3088it [37:54, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3089it [37:55, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3090it [37:56, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3091it [37:57, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3092it [37:57, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3095it [37:58, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3096it [38:00, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3097it [38:01, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3099it [38:02, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3100it [38:03, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3102it [38:04, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3103it [38:04, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3104it [38:05, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3106it [38:06, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3107it [38:07, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3108it [38:08, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3109it [38:08, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3110it [38:09, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3111it [38:09, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3112it [38:10, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3113it [38:10, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3114it [38:11, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3115it [38:11, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3116it [38:12, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3117it [38:13, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3118it [38:14, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3120it [38:15, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3121it [38:15, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3122it [38:16, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3123it [38:17, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3125it [38:18, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3126it [38:19, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3129it [38:20, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3131it [38:20, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3132it [38:21, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3133it [38:22, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3134it [38:22, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3135it [38:24, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3136it [38:26, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3137it [38:26, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3138it [38:27, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3139it [38:27, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3140it [38:29, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3141it [38:29, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3143it [38:29, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3144it [38:30, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3146it [38:32, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3147it [38:32, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3148it [38:33, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3149it [38:33, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3151it [38:34, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3152it [38:34, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3153it [38:35, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3154it [38:36, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3155it [38:36, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3156it [38:38, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3157it [38:38, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3158it [38:39, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3159it [38:40, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3160it [38:41, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3161it [38:42, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3162it [38:43, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3163it [38:45, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3164it [38:48, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3165it [38:48, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3166it [38:51, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3167it [38:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3168it [38:52, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3169it [38:53, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3170it [38:53, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3171it [38:54, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3172it [38:55, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3174it [38:56, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3175it [38:56, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3176it [38:56, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3177it [38:57, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3178it [38:58, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3179it [38:58, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3180it [38:59, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3181it [39:00, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3182it [39:00, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3183it [39:00, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3184it [39:01, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3185it [39:01, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3186it [39:02, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3187it [39:02, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3188it [39:05, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3189it [39:06, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3190it [39:07, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3191it [39:07, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3192it [39:07, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3193it [39:11, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3194it [39:14, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3195it [39:15, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3197it [39:15, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3198it [39:19, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3199it [39:20, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3200it [39:20, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3201it [39:20, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3202it [39:21, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3203it [39:23, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3204it [39:23, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3205it [39:24, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3206it [39:24, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3207it [39:25, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3208it [39:26, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3210it [39:27, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3212it [39:28, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3213it [39:28, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3214it [39:29, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3215it [39:30, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3216it [39:30, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3217it [39:30, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3218it [39:30, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3219it [39:31, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3220it [39:32, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3221it [39:32, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3222it [39:32, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3223it [39:33, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3224it [39:36, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3225it [39:36, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3226it [39:37, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3227it [39:37, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3228it [39:37, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3229it [39:40, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3231it [39:41, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3232it [39:41, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3233it [39:42, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3234it [39:46, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3235it [39:47, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3236it [39:47, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3237it [39:47, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3238it [39:47, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3239it [39:48, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3240it [39:50, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3241it [39:51, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3242it [39:51, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3245it [39:54, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3246it [39:54, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3247it [39:54, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3248it [39:55, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3249it [39:56, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3250it [39:57, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3251it [39:57, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3252it [39:59, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3253it [39:59, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3254it [40:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3255it [40:03, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3256it [40:05, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3257it [40:05, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3258it [40:06, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3259it [40:07, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3260it [40:08, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3261it [40:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3263it [40:10, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3264it [40:11, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3265it [40:11, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3266it [40:13, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3267it [40:14, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3268it [40:15, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3269it [40:15, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3270it [40:16, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3271it [40:17, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3272it [40:18, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3273it [40:19, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3275it [40:19, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3276it [40:20, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3277it [40:21, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3278it [40:23, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3279it [40:23, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3280it [40:23, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3281it [40:25, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3284it [40:26, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3286it [40:27, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3287it [40:28, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3289it [40:28, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3290it [40:30, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3291it [40:30, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3292it [40:30, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3293it [40:32, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3294it [40:32, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3295it [40:33, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3296it [40:34, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3298it [40:35, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3299it [40:35, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3300it [40:36, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3301it [40:36, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3302it [40:36, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3303it [40:38, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3304it [40:38, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3306it [40:39, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3307it [40:41, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3308it [40:42, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3309it [40:42, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3310it [40:43, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3311it [40:44, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3312it [40:45, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3313it [40:46, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3314it [40:47, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3315it [40:48, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3316it [40:48, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3317it [40:48, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3318it [40:49, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3319it [40:53, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3320it [40:53, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3321it [40:54, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3322it [40:54, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3323it [40:56, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3324it [40:58, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3325it [40:59, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3327it [40:59, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3328it [40:59, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3329it [41:02, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3330it [41:02, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3331it [41:03, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3333it [41:04, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3334it [41:04, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3335it [41:05, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3336it [41:05, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3337it [41:06, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3338it [41:07, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3339it [41:07, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3340it [41:08, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3341it [41:08, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3342it [41:09, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3343it [41:10, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3344it [41:10, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3345it [41:11, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3346it [41:14, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3347it [41:14, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3349it [41:15, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3350it [41:15, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3351it [41:18, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3352it [41:19, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3353it [41:20, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3354it [41:21, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3355it [41:22, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3356it [41:23, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3357it [41:24, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3358it [41:25, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3359it [41:25, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3360it [41:26, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3361it [41:27, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3362it [41:27, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3363it [41:28, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3364it [41:30, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3366it [41:31, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3368it [41:32, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3369it [41:33, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3370it [41:34, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3371it [41:34, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3372it [41:34, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3373it [41:36, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3374it [41:36, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3375it [41:37, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3376it [41:38, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3377it [41:39, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3378it [41:39, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3379it [41:40, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3380it [41:41, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3381it [41:42, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3382it [41:43, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3383it [41:44, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3384it [41:44, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3385it [41:46, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3386it [41:46, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3387it [41:46, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3388it [41:48, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3390it [41:49, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3391it [41:49, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3392it [41:50, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3393it [41:51, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3395it [41:51, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3396it [41:51, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3397it [41:53, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3398it [41:54, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3399it [41:55, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3400it [41:55, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3401it [41:55, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3402it [41:56, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3403it [41:57, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3404it [41:57, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3405it [41:57, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3406it [41:59, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3407it [42:00, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3409it [42:00, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3410it [42:01, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3411it [42:01, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3412it [42:02, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3413it [42:03, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3414it [42:04, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3415it [42:04, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3416it [42:04, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3417it [42:06, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3418it [42:08, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3419it [42:08, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3420it [42:09, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3421it [42:09, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3422it [42:11, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3423it [42:11, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3424it [42:12, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3425it [42:12, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3426it [42:12, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3427it [42:13, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3428it [42:14, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3429it [42:15, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3431it [42:16, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3432it [42:16, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3433it [42:16, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3434it [42:18, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3436it [42:18, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3438it [42:19, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3439it [42:19, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3440it [42:20, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3441it [42:21, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3442it [42:21, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3444it [42:21, 2.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3445it [42:22, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3446it [42:24, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3447it [42:25, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3448it [42:26, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3449it [42:27, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3451it [42:28, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3452it [42:28, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3453it [42:30, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3454it [42:32, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3455it [42:32, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3456it [42:32, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3457it [42:33, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3458it [42:34, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3459it [42:36, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3461it [42:36, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3462it [42:38, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3463it [42:38, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3464it [42:39, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3465it [42:41, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3466it [42:41, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3467it [42:43, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3469it [42:43, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3470it [42:43, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3471it [42:44, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3472it [42:45, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3473it [42:46, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3474it [42:46, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3477it [42:49, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3478it [42:49, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3480it [42:49, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3481it [42:50, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3482it [42:51, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3483it [42:52, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3484it [42:52, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3486it [42:53, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3487it [42:53, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3488it [42:54, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3489it [42:55, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3490it [42:56, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3491it [42:56, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3493it [42:57, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3494it [42:58, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3495it [43:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3496it [43:04, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3502it [43:07, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3503it [43:07, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3504it [43:09, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3505it [43:09, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3508it [43:11, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3509it [43:11, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3510it [43:12, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3511it [43:12, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3512it [43:13, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3513it [43:14, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3514it [43:15, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3515it [43:15, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3517it [43:17, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3519it [43:17, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3520it [43:18, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3521it [43:18, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3522it [43:19, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3523it [43:20, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3525it [43:23, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3526it [43:23, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3527it [43:23, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3528it [43:25, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3529it [43:25, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3530it [43:26, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3531it [43:27, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3532it [43:28, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3534it [43:30, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3535it [43:31, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3536it [43:32, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3538it [43:33, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3539it [43:33, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3540it [43:34, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3541it [43:35, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3542it [43:35, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3543it [43:36, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3545it [43:36, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3546it [43:37, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3547it [43:38, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3548it [43:38, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3549it [43:39, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3550it [43:39, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3552it [43:41, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3553it [43:43, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3554it [43:43, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3556it [43:43, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3557it [43:44, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3558it [43:45, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3559it [43:48, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3561it [43:48, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3562it [43:49, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3563it [43:50, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3565it [43:51, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3566it [43:52, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3567it [43:53, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3568it [43:53, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3569it [43:54, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3571it [43:56, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3572it [43:57, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3573it [43:59, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3574it [43:59, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3575it [44:02, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3576it [44:03, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3577it [44:03, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3578it [44:05, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3579it [44:05, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3580it [44:08, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3581it [44:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3583it [44:09, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3584it [44:10, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3585it [44:11, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3587it [44:12, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3589it [44:12, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3590it [44:14, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3591it [44:14, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3592it [44:15, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3594it [44:16, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3595it [44:17, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3596it [44:18, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3598it [44:19, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3599it [44:20, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3600it [44:20, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3601it [44:21, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3602it [44:22, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3603it [44:23, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3604it [44:24, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3605it [44:25, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3606it [44:25, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3607it [44:26, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3608it [44:27, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3609it [44:28, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3610it [44:28, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3611it [44:30, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3612it [44:30, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3614it [44:32, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3617it [44:34, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3618it [44:34, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3619it [44:35, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3620it [44:36, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3621it [44:37, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3622it [44:37, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3623it [44:37, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3624it [44:38, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3625it [44:39, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3627it [44:40, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3628it [44:40, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3629it [44:41, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3630it [44:41, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3631it [44:44, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3632it [44:44, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3633it [44:45, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3634it [44:45, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3635it [44:46, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3636it [44:48, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3637it [44:49, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3638it [44:49, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3639it [44:50, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3640it [44:51, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3641it [44:53, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3642it [44:53, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3643it [44:54, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3645it [44:55, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3646it [44:56, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3647it [44:58, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3648it [45:00, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3650it [45:01, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3651it [45:03, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3652it [45:03, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3653it [45:04, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3654it [45:04, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3655it [45:05, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3656it [45:06, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3657it [45:07, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3658it [45:08, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3659it [45:08, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3661it [45:08, 2.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3662it [45:09, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3663it [45:12, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3664it [45:12, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3665it [45:13, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3666it [45:13, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3667it [45:14, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3668it [45:15, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3669it [45:16, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3670it [45:17, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3671it [45:17, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3672it [45:18, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3673it [45:18, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3674it [45:19, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3675it [45:20, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3676it [45:21, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3678it [45:22, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3679it [45:22, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3680it [45:23, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3681it [45:23, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3682it [45:24, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3683it [45:24, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3684it [45:25, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3685it [45:26, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3686it [45:26, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3687it [45:27, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3688it [45:27, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3690it [45:28, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3692it [45:29, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3693it [45:29, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3694it [45:30, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3695it [45:30, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3696it [45:31, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3697it [45:33, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3698it [45:33, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3699it [45:34, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3700it [45:35, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3701it [45:35, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3702it [45:36, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3703it [45:37, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3704it [45:38, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3705it [45:41, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3707it [45:41, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3708it [45:42, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3709it [45:42, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3710it [45:44, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3711it [45:44, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3712it [45:44, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3715it [45:45, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3716it [45:46, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3717it [45:47, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3718it [45:47, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3719it [45:48, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3721it [45:48, 2.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3722it [45:49, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3723it [45:49, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3724it [45:50, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3725it [45:50, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3727it [45:52, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3728it [45:53, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3729it [45:54, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3730it [45:54, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3731it [45:54, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3732it [45:55, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3733it [45:57, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3734it [45:58, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3736it [45:59, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3737it [45:59, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3738it [46:01, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3739it [46:01, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3740it [46:02, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3742it [46:04, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3744it [46:05, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3746it [46:08, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3747it [46:08, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3748it [46:09, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3749it [46:10, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3750it [46:11, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3751it [46:11, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3752it [46:13, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3753it [46:13, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3754it [46:13, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3755it [46:14, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3756it [46:15, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3757it [46:16, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3758it [46:17, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3759it [46:18, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3760it [46:18, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3761it [46:20, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3762it [46:22, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3763it [46:22, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3764it [46:23, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3765it [46:24, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3767it [46:25, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3768it [46:26, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3769it [46:26, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3770it [46:27, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3771it [46:27, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3772it [46:29, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3773it [46:31, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3774it [46:31, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3775it [46:32, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3776it [46:34, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3777it [46:35, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3778it [46:38, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3781it [46:40, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3782it [46:41, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3783it [46:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3784it [46:44, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3785it [46:44, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3786it [46:45, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3787it [46:45, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3788it [46:46, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3789it [46:47, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3790it [46:47, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3792it [46:48, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3793it [46:48, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3794it [46:49, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3795it [46:50, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3796it [46:51, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3797it [46:51, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3798it [46:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3799it [46:52, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3801it [46:54, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3802it [46:54, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3803it [46:55, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3804it [46:55, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3805it [46:55, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3807it [46:57, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3809it [46:58, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3810it [47:00, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3812it [47:00, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3813it [47:00, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3814it [47:01, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3815it [47:02, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3817it [47:02, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3819it [47:03, 3.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3820it [47:04, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3821it [47:05, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3822it [47:06, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3823it [47:06, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3824it [47:06, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3826it [47:07, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3827it [47:09, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3828it [47:10, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3829it [47:11, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3830it [47:11, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3831it [47:11, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3832it [47:11, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3833it [47:13, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3834it [47:14, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3835it [47:16, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3836it [47:16, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3837it [47:17, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3838it [47:18, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3839it [47:18, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3840it [47:19, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3841it [47:19, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3843it [47:20, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3844it [47:21, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3845it [47:22, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3846it [47:23, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3847it [47:23, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3848it [47:24, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3849it [47:24, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3851it [47:27, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3852it [47:27, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3853it [47:28, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3855it [47:28, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3856it [47:29, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3857it [47:31, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3858it [47:31, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3859it [47:32, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3861it [47:33, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3863it [47:35, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3864it [47:35, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3867it [47:37, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3868it [47:37, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3869it [47:38, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3870it [47:38, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3872it [47:39, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3873it [47:40, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3874it [47:42, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3876it [47:43, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3878it [47:43, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3879it [47:43, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3880it [47:45, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3881it [47:45, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3883it [47:45, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3884it [47:46, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3885it [47:47, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3886it [47:47, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3887it [47:49, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3888it [47:49, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3889it [47:49, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3890it [47:50, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3891it [47:50, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3892it [47:50, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3893it [47:51, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3894it [47:53, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3897it [47:54, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3898it [47:54, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3899it [47:56, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3900it [47:57, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3901it [47:57, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3903it [47:58, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3904it [47:58, 2.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3905it [47:59, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3906it [48:00, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3907it [48:01, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3908it [48:02, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3909it [48:02, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3910it [48:02, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3912it [48:03, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3913it [48:05, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3914it [48:05, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3916it [48:09, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3918it [48:14, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3922it [48:16, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3924it [48:17, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3925it [48:17, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3927it [48:18, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3928it [48:19, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3929it [48:20, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3930it [48:20, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3932it [48:21, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3933it [48:21, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3934it [48:22, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3935it [48:23, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3936it [48:23, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3938it [48:23, 3.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3939it [48:23, 2.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3940it [48:25, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3941it [48:25, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3942it [48:25, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3943it [48:26, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3944it [48:27, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3946it [48:28, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3947it [48:29, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3948it [48:31, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3949it [48:31, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3950it [48:31, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3952it [48:33, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3953it [48:34, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3954it [48:35, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3955it [48:35, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3958it [48:36, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3959it [48:37, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3960it [48:38, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3962it [48:38, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3963it [48:38, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3964it [48:39, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3965it [48:40, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3966it [48:41, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3967it [48:41, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3968it [48:42, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3969it [48:43, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3970it [48:44, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3972it [48:44, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3973it [48:47, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3975it [48:48, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3978it [48:53, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3980it [48:55, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3981it [48:55, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3982it [48:56, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3983it [48:58, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3984it [48:59, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3985it [49:00, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3986it [49:00, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3987it [49:00, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3988it [49:00, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3989it [49:01, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3990it [49:02, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3992it [49:03, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3993it [49:03, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3994it [49:05, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3995it [49:05, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3997it [49:07, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3998it [49:07, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
3999it [49:07, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4000it [49:10, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4001it [49:11, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4002it [49:11, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4003it [49:12, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4005it [49:12, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4006it [49:13, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4007it [49:14, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4008it [49:15, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4010it [49:15, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4011it [49:15, 2.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4012it [49:16, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4013it [49:17, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4014it [49:18, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4015it [49:18, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4017it [49:18, 2.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4018it [49:19, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4019it [49:20, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4020it [49:21, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4021it [49:21, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4022it [49:21, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4023it [49:23, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4025it [49:25, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4028it [49:25, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4029it [49:27, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4030it [49:27, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4031it [49:29, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4032it [49:30, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4033it [49:31, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4034it [49:31, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4035it [49:32, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4036it [49:32, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4037it [49:32, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4038it [49:34, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4039it [49:34, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4041it [49:35, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4042it [49:35, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4043it [49:36, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4044it [49:37, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4046it [49:40, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4047it [49:40, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4048it [49:40, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4049it [49:41, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4050it [49:41, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4051it [49:44, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4052it [49:44, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4053it [49:44, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4054it [49:45, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4055it [49:47, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4056it [49:47, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4057it [49:48, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4058it [49:48, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4059it [49:48, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4060it [49:49, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4061it [49:50, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4062it [49:52, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4064it [49:52, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4065it [49:52, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4067it [49:54, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4068it [49:55, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4069it [49:55, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4070it [49:55, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4072it [49:57, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4073it [49:58, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4076it [49:58, 2.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4077it [49:59, 2.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4078it [50:02, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4079it [50:02, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4080it [50:02, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4081it [50:03, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4082it [50:03, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4084it [50:05, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4085it [50:05, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4086it [50:06, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4087it [50:07, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4088it [50:08, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4089it [50:08, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4090it [50:09, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4092it [50:10, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4093it [50:11, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4094it [50:11, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4095it [50:12, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4096it [50:13, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4097it [50:13, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4098it [50:15, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4100it [50:15, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4101it [50:16, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4102it [50:18, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4104it [50:19, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4105it [50:20, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4106it [50:22, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4107it [50:23, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4109it [50:24, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4110it [50:25, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4111it [50:25, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4112it [50:27, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4113it [50:27, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4114it [50:28, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4115it [50:29, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4117it [50:29, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4118it [50:29, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4119it [50:30, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4120it [50:30, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4121it [50:31, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4122it [50:31, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4123it [50:31, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4124it [50:33, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4125it [50:34, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4126it [50:34, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4127it [50:35, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4129it [50:35, 2.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4130it [50:37, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4131it [50:38, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4132it [50:38, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4133it [50:39, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4134it [50:39, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4135it [50:40, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4136it [50:42, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4137it [50:43, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4138it [50:45, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4139it [50:46, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4141it [50:52, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4143it [50:53, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4145it [50:54, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4146it [50:56, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4147it [50:56, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4148it [50:57, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4149it [50:57, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4150it [50:58, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4151it [50:59, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4152it [51:01, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4153it [51:01, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4154it [51:02, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4156it [51:02, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4157it [51:03, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4158it [51:04, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4159it [51:05, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4160it [51:05, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4161it [51:06, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4162it [51:07, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4163it [51:07, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4164it [51:08, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4165it [51:09, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4167it [51:11, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4168it [51:11, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4169it [51:12, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4170it [51:12, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4171it [51:12, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4172it [51:13, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4173it [51:14, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4174it [51:15, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4175it [51:15, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4176it [51:16, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4177it [51:16, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4178it [51:16, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4179it [51:20, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4180it [51:20, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4181it [51:21, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4182it [51:21, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4184it [51:25, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4185it [51:25, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4186it [51:26, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4187it [51:27, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4188it [51:28, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4190it [51:31, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4191it [51:31, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4192it [51:32, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4194it [51:34, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4195it [51:34, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4196it [51:36, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4197it [51:37, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4198it [51:38, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4199it [51:39, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4200it [51:41, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4202it [51:43, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4204it [51:44, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4205it [51:45, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4206it [51:47, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4207it [51:47, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4208it [51:47, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4209it [51:47, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4210it [51:48, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4211it [51:49, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4212it [51:50, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4213it [51:50, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4214it [51:51, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4215it [51:52, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4216it [51:53, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4217it [51:54, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4218it [51:54, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4219it [51:55, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4221it [51:56, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4222it [51:57, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4223it [51:57, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4224it [51:57, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4226it [51:59, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4227it [52:00, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4229it [52:00, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4230it [52:00, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4231it [52:01, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4233it [52:02, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4234it [52:03, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4235it [52:03, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4236it [52:03, 2.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4237it [52:04, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4238it [52:04, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4239it [52:05, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4240it [52:05, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4241it [52:06, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4242it [52:07, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4244it [52:07, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4245it [52:08, 2.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4246it [52:08, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4247it [52:09, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4248it [52:10, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4249it [52:11, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4251it [52:12, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4252it [52:12, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4253it [52:13, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4254it [52:14, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4255it [52:14, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4256it [52:16, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4257it [52:16, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4258it [52:18, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4259it [52:19, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4260it [52:19, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4261it [52:19, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4262it [52:21, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4263it [52:22, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4264it [52:23, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4265it [52:23, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4266it [52:24, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4267it [52:27, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4268it [52:28, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4269it [52:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4270it [52:30, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4271it [52:30, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4272it [52:32, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4273it [52:33, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4274it [52:34, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4275it [52:34, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4276it [52:35, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4277it [52:36, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4279it [52:37, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4281it [52:38, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4284it [52:40, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4285it [52:40, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4286it [52:41, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4287it [52:41, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4288it [52:42, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4289it [52:43, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4290it [52:45, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4291it [52:45, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4292it [52:47, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4293it [52:47, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4294it [52:49, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4297it [52:49, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4298it [52:51, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4299it [52:52, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4300it [52:52, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4301it [52:53, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4302it [52:53, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4303it [52:54, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4304it [52:55, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4306it [52:55, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4307it [52:56, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4308it [52:56, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4309it [52:57, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4310it [52:58, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4311it [52:58, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4312it [52:59, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4313it [52:59, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4314it [52:59, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4315it [53:00, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4316it [53:02, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4317it [53:03, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4318it [53:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4320it [53:05, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4323it [53:06, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4324it [53:10, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4325it [53:11, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4326it [53:11, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4327it [53:12, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4329it [53:13, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4330it [53:14, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4331it [53:15, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4332it [53:16, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4333it [53:16, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4334it [53:16, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4335it [53:17, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4336it [53:19, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4337it [53:20, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4339it [53:21, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4340it [53:22, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4342it [53:25, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4343it [53:26, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4344it [53:30, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4347it [53:32, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4350it [53:32, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4351it [53:32, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4353it [53:34, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4355it [53:37, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4357it [53:37, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4358it [53:38, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4359it [53:39, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4360it [53:40, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4361it [53:40, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4362it [53:40, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4363it [53:41, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4364it [53:43, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4365it [53:43, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4366it [53:44, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4367it [53:44, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4368it [53:44, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4369it [53:44, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4370it [53:47, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4371it [53:47, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4372it [53:48, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4373it [53:49, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4374it [53:49, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4376it [53:51, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4377it [53:52, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4379it [53:54, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4380it [53:56, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4382it [54:00, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4385it [54:02, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4387it [54:02, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4388it [54:04, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4389it [54:04, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4390it [54:05, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4391it [54:07, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4392it [54:09, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4394it [54:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4397it [54:12, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4399it [54:12, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4400it [54:16, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4403it [54:17, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4404it [54:18, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4405it [54:18, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4406it [54:20, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4407it [54:20, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4408it [54:21, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4409it [54:21, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4410it [54:22, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4411it [54:23, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4412it [54:24, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4414it [54:25, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4415it [54:25, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4416it [54:27, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4417it [54:28, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4419it [54:29, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4420it [54:29, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4421it [54:30, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4422it [54:30, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4423it [54:31, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4425it [54:32, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4426it [54:32, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4427it [54:34, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4428it [54:34, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4429it [54:34, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4430it [54:34, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4433it [54:37, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4434it [54:37, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4436it [54:38, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4437it [54:38, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4438it [54:40, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4439it [54:40, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4440it [54:41, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4441it [54:41, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4442it [54:41, 2.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4444it [54:43, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4447it [54:43, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4448it [54:44, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4449it [54:45, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4450it [54:47, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4451it [54:47, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4453it [54:48, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4454it [54:48, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4455it [54:51, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4457it [54:51, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4458it [54:52, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4459it [54:54, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4460it [54:57, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4461it [54:59, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4462it [55:02, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4463it [55:03, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4465it [55:04, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4466it [55:05, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4467it [55:05, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4468it [55:06, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4469it [55:07, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4471it [55:08, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4472it [55:09, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4473it [55:10, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4475it [55:10, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4476it [55:11, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4477it [55:12, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4478it [55:13, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4480it [55:13, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4481it [55:14, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4482it [55:14, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4484it [55:15, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4485it [55:16, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4487it [55:17, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4488it [55:17, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4489it [55:18, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4490it [55:19, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4491it [55:20, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4492it [55:21, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4493it [55:22, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4494it [55:23, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4496it [55:23, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4497it [55:24, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4498it [55:24, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4500it [55:25, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4502it [55:26, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4503it [55:27, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4504it [55:28, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4505it [55:28, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4506it [55:28, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4507it [55:29, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4508it [55:29, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4509it [55:30, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4510it [55:31, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4511it [55:31, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4512it [55:33, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4513it [55:34, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4514it [55:35, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4515it [55:36, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4517it [55:37, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4519it [55:37, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4520it [55:39, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4521it [55:39, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4522it [55:39, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4523it [55:40, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4524it [55:43, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4525it [55:44, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4530it [55:45, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4531it [55:46, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4532it [55:47, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4533it [55:47, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4535it [55:47, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4536it [55:48, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4537it [55:50, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4538it [55:50, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4539it [55:50, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4541it [55:51, 2.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4542it [55:51, 2.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4543it [55:53, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4544it [55:53, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4545it [55:54, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4546it [55:54, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4547it [55:55, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4548it [55:55, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4549it [55:55, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4550it [55:56, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4551it [55:57, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4553it [55:57, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4555it [55:58, 2.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4556it [56:00, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4557it [56:00, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4558it [56:01, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4559it [56:01, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4560it [56:03, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4561it [56:03, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4562it [56:04, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4564it [56:05, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4565it [56:06, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4566it [56:07, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4568it [56:07, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4569it [56:07, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4570it [56:08, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4571it [56:09, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4573it [56:09, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4574it [56:10, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4575it [56:11, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4577it [56:11, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4578it [56:11, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4580it [56:12, 2.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4581it [56:13, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4582it [56:15, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4584it [56:15, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4585it [56:16, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4586it [56:16, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4587it [56:18, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4588it [56:18, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4589it [56:19, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4590it [56:20, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4591it [56:21, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4592it [56:21, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4593it [56:22, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4594it [56:22, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4595it [56:23, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4596it [56:23, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4598it [56:24, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4599it [56:25, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4601it [56:26, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4602it [56:26, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4604it [56:28, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4605it [56:28, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4606it [56:29, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4607it [56:29, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4608it [56:30, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4610it [56:30, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4611it [56:31, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4612it [56:32, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4613it [56:34, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4614it [56:35, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4616it [56:35, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4617it [56:36, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4618it [56:37, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4619it [56:37, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4620it [56:38, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4621it [56:38, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4622it [56:39, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4624it [56:40, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4625it [56:41, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4626it [56:42, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4627it [56:42, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4628it [56:42, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4629it [56:43, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4630it [56:44, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4631it [56:44, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4632it [56:46, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4633it [56:46, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4635it [56:48, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4636it [56:48, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4637it [56:49, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4638it [56:50, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4640it [56:51, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4642it [56:51, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4643it [56:52, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4644it [56:54, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4645it [56:55, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4647it [56:55, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4649it [56:56, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4650it [56:58, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4651it [56:58, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4652it [56:58, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4654it [56:58, 2.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4655it [57:00, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4657it [57:01, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4658it [57:01, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4659it [57:01, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4661it [57:03, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4662it [57:03, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4663it [57:03, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4664it [57:03, 2.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4665it [57:04, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4666it [57:05, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4667it [57:05, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4668it [57:06, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4669it [57:06, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4670it [57:06, 2.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4671it [57:07, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4672it [57:08, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4673it [57:08, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4674it [57:09, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4676it [57:10, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4677it [57:11, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4678it [57:13, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4679it [57:15, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4680it [57:16, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4681it [57:17, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4682it [57:20, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4683it [57:22, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4684it [57:23, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4685it [57:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4686it [57:27, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4687it [57:28, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4689it [57:30, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4690it [57:30, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4691it [57:34, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4692it [57:34, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4693it [57:39, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4694it [57:39, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4696it [57:42, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4697it [57:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4698it [57:47, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4699it [57:47, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4700it [57:47, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4701it [57:49, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4702it [57:51, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4703it [57:55, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4704it [57:55, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4705it [57:58, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4707it [58:04, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4708it [58:06, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4710it [58:06, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4711it [58:07, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4712it [58:08, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4713it [58:10, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4714it [58:11, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4715it [58:11, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4717it [58:11, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4719it [58:13, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4720it [58:13, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4721it [58:14, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4724it [58:14, 2.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4725it [58:17, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4726it [58:18, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4727it [58:18, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4729it [58:19, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4731it [58:19, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4732it [58:21, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4734it [58:21, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4735it [58:22, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4736it [58:22, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4737it [58:23, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4738it [58:24, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4740it [58:25, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4741it [58:25, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4742it [58:26, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4743it [58:26, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4744it [58:27, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4746it [58:29, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4747it [58:29, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4748it [58:29, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4750it [58:31, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4751it [58:31, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4752it [58:32, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4753it [58:32, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4754it [58:32, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4756it [58:33, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4757it [58:34, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4758it [58:35, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4759it [58:35, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4761it [58:38, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4763it [58:39, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4764it [58:40, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4766it [58:41, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4767it [58:42, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4768it [58:45, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4769it [58:46, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4770it [58:46, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4771it [58:48, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4772it [58:49, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4773it [58:51, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4774it [58:53, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4775it [58:53, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4776it [58:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4777it [58:58, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4778it [58:58, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4779it [58:59, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4780it [59:00, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4781it [59:01, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4782it [59:01, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4783it [59:03, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4784it [59:04, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4785it [59:05, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4786it [59:06, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4787it [59:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4789it [59:08, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4791it [59:09, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4792it [59:09, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4793it [59:11, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4794it [59:11, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4795it [59:11, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4796it [59:13, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4797it [59:13, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4798it [59:14, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4799it [59:15, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4800it [59:15, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4801it [59:16, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4802it [59:17, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4803it [59:18, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4804it [59:18, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4805it [59:19, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4806it [59:19, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4807it [59:20, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4808it [59:20, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4809it [59:21, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4810it [59:21, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4811it [59:22, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4812it [59:22, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4814it [59:22, 3.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4815it [59:25, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4816it [59:25, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4817it [59:26, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4818it [59:26, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4820it [59:26, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4821it [59:28, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4822it [59:29, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4823it [59:29, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4824it [59:31, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4825it [59:31, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4827it [59:32, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4828it [59:33, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4830it [59:33, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4831it [59:33, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4832it [59:34, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4833it [59:35, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4834it [59:35, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4837it [59:36, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4838it [59:36, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4839it [59:38, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4840it [59:38, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4841it [59:39, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4842it [59:39, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4845it [59:41, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4846it [59:41, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4847it [59:42, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4848it [59:42, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4849it [59:42, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4850it [59:43, 2.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4851it [59:44, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4852it [59:45, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4853it [59:46, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4854it [59:46, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4855it [59:47, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4856it [59:49, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4858it [59:49, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4859it [59:50, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4860it [59:51, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4862it [59:52, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4863it [59:52, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4864it [59:53, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4865it [59:55, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4867it [59:56, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4869it [59:58, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4870it [59:59, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4871it [1:00:01, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4872it [1:00:01, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4873it [1:00:02, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4874it [1:00:04, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4875it [1:00:04, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4877it [1:00:05, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4878it [1:00:06, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4879it [1:00:07, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4880it [1:00:07, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4881it [1:00:08, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4882it [1:00:09, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4883it [1:00:09, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4884it [1:00:10, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4885it [1:00:10, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4886it [1:00:11, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4887it [1:00:12, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4888it [1:00:13, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4889it [1:00:14, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4890it [1:00:14, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4891it [1:00:15, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4892it [1:00:16, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4893it [1:00:17, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4894it [1:00:17, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4895it [1:00:19, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4897it [1:00:20, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4898it [1:00:20, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4899it [1:00:21, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4900it [1:00:21, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4901it [1:00:22, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4902it [1:00:22, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4903it [1:00:25, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4906it [1:00:26, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4907it [1:00:26, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4908it [1:00:28, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4909it [1:00:28, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4910it [1:00:28, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4911it [1:00:29, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4912it [1:00:29, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4913it [1:00:29, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4914it [1:00:31, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4915it [1:00:31, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4916it [1:00:31, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4917it [1:00:32, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4918it [1:00:33, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4919it [1:00:34, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4920it [1:00:34, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4921it [1:00:34, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4922it [1:00:35, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4923it [1:00:36, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4924it [1:00:36, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4926it [1:00:37, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4927it [1:00:37, 2.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4928it [1:00:39, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4929it [1:00:41, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4931it [1:00:42, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4935it [1:00:44, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4936it [1:00:45, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4937it [1:00:45, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4939it [1:00:46, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4940it [1:00:46, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4941it [1:00:47, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4942it [1:00:48, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4943it [1:00:48, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4944it [1:00:50, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4946it [1:00:50, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4947it [1:00:51, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4948it [1:00:53, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4949it [1:00:53, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4950it [1:00:53, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4952it [1:00:54, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4953it [1:00:55, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4954it [1:00:56, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4955it [1:00:56, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4956it [1:00:57, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4957it [1:00:57, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4958it [1:00:57, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4959it [1:00:58, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4960it [1:00:59, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4961it [1:01:00, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4963it [1:01:00, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4964it [1:01:01, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4965it [1:01:02, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4966it [1:01:03, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4968it [1:01:03, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4969it [1:01:04, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4970it [1:01:06, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4971it [1:01:06, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4973it [1:01:07, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4974it [1:01:09, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4976it [1:01:10, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4977it [1:01:11, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4978it [1:01:11, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4979it [1:01:11, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4980it [1:01:11, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4981it [1:01:12, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4982it [1:01:13, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4983it [1:01:13, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4984it [1:01:14, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4985it [1:01:14, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4986it [1:01:15, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4987it [1:01:15, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4988it [1:01:16, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4989it [1:01:17, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4990it [1:01:17, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4991it [1:01:18, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4992it [1:01:19, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4993it [1:01:19, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4994it [1:01:20, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4995it [1:01:22, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4997it [1:01:22, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4998it [1:01:23, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
4999it [1:01:23, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5000it [1:01:24, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5001it [1:01:25, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5003it [1:01:26, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5004it [1:01:26, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5005it [1:01:27, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5006it [1:01:28, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5007it [1:01:29, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5008it [1:01:29, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5010it [1:01:30, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5011it [1:01:31, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5012it [1:01:31, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5013it [1:01:32, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5014it [1:01:32, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5015it [1:01:33, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5017it [1:01:33, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5018it [1:01:35, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5019it [1:01:35, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5020it [1:01:37, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5021it [1:01:37, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5023it [1:01:38, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5024it [1:01:38, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5025it [1:01:43, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5026it [1:01:43, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5027it [1:01:44, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5028it [1:01:44, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5029it [1:01:45, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5030it [1:01:47, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5031it [1:01:47, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5032it [1:01:49, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5033it [1:01:49, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5034it [1:01:50, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5035it [1:01:50, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5036it [1:01:51, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5037it [1:01:52, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5038it [1:01:52, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5039it [1:01:54, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5040it [1:01:54, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5041it [1:01:54, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5042it [1:01:55, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5044it [1:01:56, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5045it [1:01:57, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5047it [1:01:57, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5048it [1:01:58, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5049it [1:01:58, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5050it [1:02:00, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5052it [1:02:00, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5053it [1:02:00, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5054it [1:02:01, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5055it [1:02:02, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5056it [1:02:03, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5057it [1:02:03, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5058it [1:02:03, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5059it [1:02:05, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5061it [1:02:07, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5063it [1:02:07, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5064it [1:02:08, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5065it [1:02:10, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5067it [1:02:11, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5068it [1:02:11, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5070it [1:02:12, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5071it [1:02:13, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5072it [1:02:15, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5073it [1:02:15, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5074it [1:02:16, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5075it [1:02:16, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5076it [1:02:17, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5077it [1:02:17, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5078it [1:02:18, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5079it [1:02:19, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5080it [1:02:20, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5081it [1:02:20, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5082it [1:02:21, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5083it [1:02:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5084it [1:02:24, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5085it [1:02:26, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5086it [1:02:26, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5087it [1:02:26, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5088it [1:02:31, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5089it [1:02:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5090it [1:02:32, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5091it [1:02:32, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5093it [1:02:32, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5094it [1:02:35, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5095it [1:02:35, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5096it [1:02:35, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5097it [1:02:36, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5098it [1:02:36, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5099it [1:02:37, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5100it [1:02:38, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5101it [1:02:39, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5102it [1:02:39, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5103it [1:02:39, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5104it [1:02:39, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5105it [1:02:40, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5106it [1:02:41, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5107it [1:02:42, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5108it [1:02:43, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5110it [1:02:43, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5111it [1:02:44, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5112it [1:02:44, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5113it [1:02:46, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5114it [1:02:46, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5115it [1:02:46, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5116it [1:02:46, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5117it [1:02:47, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5118it [1:02:48, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5119it [1:02:49, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5120it [1:02:49, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5121it [1:02:50, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5122it [1:02:50, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5123it [1:02:51, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5124it [1:02:51, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5125it [1:02:52, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5126it [1:02:52, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5127it [1:02:53, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5129it [1:02:53, 3.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5130it [1:02:54, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5131it [1:02:55, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5132it [1:02:55, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5133it [1:02:56, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5135it [1:02:57, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5136it [1:02:57, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5138it [1:02:58, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5139it [1:02:59, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5141it [1:03:01, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5142it [1:03:01, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5143it [1:03:01, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5144it [1:03:01, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5145it [1:03:02, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5146it [1:03:03, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5147it [1:03:04, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5148it [1:03:04, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5150it [1:03:05, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5151it [1:03:05, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5153it [1:03:07, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5154it [1:03:07, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5156it [1:03:07, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5157it [1:03:08, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5158it [1:03:10, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5160it [1:03:11, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5161it [1:03:11, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5163it [1:03:12, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5164it [1:03:13, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5165it [1:03:13, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5166it [1:03:14, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5167it [1:03:14, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5169it [1:03:15, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5170it [1:03:15, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5171it [1:03:16, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5172it [1:03:16, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5173it [1:03:17, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5175it [1:03:18, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5176it [1:03:18, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5178it [1:03:19, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5179it [1:03:19, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5180it [1:03:20, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5181it [1:03:21, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5183it [1:03:21, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5184it [1:03:22, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5185it [1:03:22, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5186it [1:03:23, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5187it [1:03:24, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5188it [1:03:24, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5189it [1:03:25, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5190it [1:03:25, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5191it [1:03:25, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5192it [1:03:26, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5193it [1:03:27, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5194it [1:03:27, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5195it [1:03:27, 2.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5196it [1:03:27, 3.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5197it [1:03:28, 3.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5198it [1:03:29, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5199it [1:03:29, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5200it [1:03:30, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5202it [1:03:30, 2.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5203it [1:03:30, 3.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5204it [1:03:31, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5205it [1:03:32, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5206it [1:03:33, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5207it [1:03:35, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5209it [1:03:35, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5211it [1:03:37, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5212it [1:03:38, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5213it [1:03:39, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5215it [1:03:40, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5216it [1:03:40, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5217it [1:03:41, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5218it [1:03:41, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5219it [1:03:43, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5220it [1:03:44, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5221it [1:03:44, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5222it [1:03:45, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5224it [1:03:46, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5225it [1:03:47, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5226it [1:03:47, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5227it [1:03:48, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5228it [1:03:49, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5229it [1:03:51, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5230it [1:03:52, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5231it [1:03:53, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5232it [1:03:54, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5233it [1:03:54, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5235it [1:03:55, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5236it [1:03:55, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5237it [1:03:56, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5238it [1:03:57, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5239it [1:03:57, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5240it [1:03:57, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5241it [1:03:58, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5242it [1:03:58, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5243it [1:04:00, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5244it [1:04:00, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5245it [1:04:00, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5247it [1:04:02, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5248it [1:04:03, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5249it [1:04:04, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5250it [1:04:05, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5251it [1:04:07, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5253it [1:04:08, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5254it [1:04:09, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5255it [1:04:10, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5256it [1:04:12, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5257it [1:04:12, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5258it [1:04:13, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5259it [1:04:15, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5260it [1:04:15, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5261it [1:04:17, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5262it [1:04:17, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5263it [1:04:19, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5264it [1:04:20, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5265it [1:04:20, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5267it [1:04:24, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5268it [1:04:24, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5270it [1:04:26, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5271it [1:04:26, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5272it [1:04:27, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5273it [1:04:29, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5274it [1:04:29, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5275it [1:04:30, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5276it [1:04:30, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5277it [1:04:30, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5278it [1:04:31, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5279it [1:04:33, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5280it [1:04:34, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5281it [1:04:35, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5282it [1:04:36, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5283it [1:04:37, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5285it [1:04:40, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5286it [1:04:40, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5288it [1:04:41, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5289it [1:04:41, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5290it [1:04:46, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5291it [1:04:46, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5293it [1:04:46, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5295it [1:04:49, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5296it [1:04:49, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5298it [1:04:49, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5299it [1:04:50, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5300it [1:04:51, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5301it [1:04:52, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5302it [1:04:53, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5303it [1:04:54, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5305it [1:04:54, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5306it [1:04:56, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5307it [1:04:56, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5308it [1:04:57, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5309it [1:04:57, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5310it [1:04:58, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5311it [1:04:58, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5312it [1:04:59, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5313it [1:05:00, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5314it [1:05:01, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5315it [1:05:02, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5317it [1:05:03, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5318it [1:05:05, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5319it [1:05:06, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5320it [1:05:06, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5321it [1:05:07, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5322it [1:05:08, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5323it [1:05:09, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5324it [1:05:09, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5325it [1:05:10, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5326it [1:05:10, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5327it [1:05:10, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5328it [1:05:11, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5329it [1:05:11, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5330it [1:05:12, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5331it [1:05:12, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5332it [1:05:12, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5333it [1:05:14, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5334it [1:05:14, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5335it [1:05:15, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5336it [1:05:15, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5337it [1:05:16, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5338it [1:05:17, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5339it [1:05:18, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5341it [1:05:19, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5342it [1:05:19, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5344it [1:05:21, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5346it [1:05:21, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5347it [1:05:21, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5349it [1:05:22, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5350it [1:05:23, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5351it [1:05:24, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5352it [1:05:24, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5353it [1:05:25, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5354it [1:05:26, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5355it [1:05:26, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5356it [1:05:27, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5357it [1:05:27, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5358it [1:05:28, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5359it [1:05:29, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5360it [1:05:30, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5361it [1:05:30, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5363it [1:05:30, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5365it [1:05:32, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5366it [1:05:32, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5368it [1:05:32, 2.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5369it [1:05:33, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5371it [1:05:35, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5372it [1:05:35, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5373it [1:05:36, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5374it [1:05:36, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5375it [1:05:36, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5376it [1:05:37, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5378it [1:05:39, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5379it [1:05:40, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5380it [1:05:40, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5381it [1:05:41, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5382it [1:05:42, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5383it [1:05:42, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5384it [1:05:43, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5385it [1:05:44, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5386it [1:05:44, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5387it [1:05:44, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5388it [1:05:45, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5389it [1:05:45, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5391it [1:05:49, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5392it [1:05:50, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5393it [1:05:51, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5394it [1:05:54, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5395it [1:05:57, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5396it [1:06:01, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5398it [1:06:05, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5402it [1:06:05, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5404it [1:06:08, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5405it [1:06:08, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5408it [1:06:09, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5409it [1:06:10, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5410it [1:06:10, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5411it [1:06:11, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5412it [1:06:11, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5414it [1:06:11, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5415it [1:06:13, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5416it [1:06:14, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5418it [1:06:14, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5420it [1:06:16, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5421it [1:06:16, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5423it [1:06:17, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5425it [1:06:17, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5426it [1:06:19, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5427it [1:06:20, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5428it [1:06:21, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5430it [1:06:22, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5431it [1:06:23, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5432it [1:06:25, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5433it [1:06:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5434it [1:06:28, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5435it [1:06:29, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5436it [1:06:30, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5437it [1:06:33, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5438it [1:06:33, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5439it [1:06:34, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5440it [1:06:37, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5441it [1:06:38, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5442it [1:06:38, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5443it [1:06:39, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5445it [1:06:39, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5446it [1:06:41, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5450it [1:06:42, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5451it [1:06:42, 2.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5452it [1:06:44, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5453it [1:06:45, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5456it [1:06:45, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5457it [1:06:47, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5458it [1:06:47, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5459it [1:06:48, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5461it [1:06:48, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5463it [1:06:50, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5464it [1:06:51, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5465it [1:06:52, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5466it [1:06:52, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5467it [1:06:53, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5468it [1:06:55, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5470it [1:06:55, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5471it [1:06:56, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5472it [1:06:56, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5473it [1:06:58, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5474it [1:06:58, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5475it [1:06:59, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5476it [1:06:59, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5478it [1:07:00, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5479it [1:07:00, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5480it [1:07:01, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5481it [1:07:02, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5482it [1:07:02, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5484it [1:07:05, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5485it [1:07:05, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5488it [1:07:05, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5489it [1:07:06, 2.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5490it [1:07:08, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5491it [1:07:09, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5493it [1:07:09, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5494it [1:07:10, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5495it [1:07:10, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5496it [1:07:11, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5497it [1:07:12, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5498it [1:07:12, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5499it [1:07:12, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5500it [1:07:12, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5501it [1:07:13, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5502it [1:07:14, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5503it [1:07:15, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5505it [1:07:17, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5506it [1:07:17, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5507it [1:07:18, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5508it [1:07:18, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5509it [1:07:18, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5510it [1:07:19, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5511it [1:07:20, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5512it [1:07:21, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5513it [1:07:21, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5514it [1:07:22, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5516it [1:07:22, 2.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5517it [1:07:25, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5519it [1:07:26, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5520it [1:07:27, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5521it [1:07:27, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5522it [1:07:28, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5523it [1:07:29, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5525it [1:07:30, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5526it [1:07:31, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5528it [1:07:36, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5529it [1:07:37, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5531it [1:07:37, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5532it [1:07:38, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5533it [1:07:41, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5534it [1:07:43, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5535it [1:07:43, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5536it [1:07:44, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5537it [1:07:44, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5538it [1:07:46, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5539it [1:07:46, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5540it [1:07:47, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5541it [1:07:47, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5542it [1:07:47, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5544it [1:07:48, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5545it [1:07:49, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5547it [1:07:50, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5548it [1:07:50, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5549it [1:07:51, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5550it [1:07:52, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5551it [1:07:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5552it [1:07:54, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5553it [1:07:54, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5554it [1:07:55, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5556it [1:07:56, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5557it [1:07:56, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5558it [1:07:58, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5560it [1:07:58, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5561it [1:07:59, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5562it [1:08:00, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5564it [1:08:02, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5565it [1:08:02, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5567it [1:08:02, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5569it [1:08:02, 3.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5570it [1:08:05, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5571it [1:08:05, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5573it [1:08:05, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5575it [1:08:06, 2.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5576it [1:08:07, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5577it [1:08:08, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5578it [1:08:10, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5579it [1:08:10, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5580it [1:08:13, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5581it [1:08:14, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5582it [1:08:15, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5584it [1:08:15, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5585it [1:08:19, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5586it [1:08:19, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5587it [1:08:19, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5589it [1:08:19, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5590it [1:08:20, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5591it [1:08:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5592it [1:08:24, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5593it [1:08:24, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5595it [1:08:24, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5596it [1:08:25, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5597it [1:08:27, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5599it [1:08:28, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5600it [1:08:29, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5601it [1:08:30, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5602it [1:08:33, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5605it [1:08:33, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5606it [1:08:34, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5607it [1:08:34, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5608it [1:08:36, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5609it [1:08:36, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5612it [1:08:37, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5613it [1:08:38, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5614it [1:08:39, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5615it [1:08:39, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5616it [1:08:41, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5617it [1:08:42, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5621it [1:08:43, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5622it [1:08:44, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5623it [1:08:45, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5624it [1:08:45, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5625it [1:08:45, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5627it [1:08:46, 3.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5628it [1:08:47, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5629it [1:08:48, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5630it [1:08:48, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5632it [1:08:49, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5634it [1:08:50, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5635it [1:08:53, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5636it [1:08:54, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5637it [1:08:57, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5638it [1:08:57, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5639it [1:08:59, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5640it [1:09:00, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5641it [1:09:00, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5642it [1:09:03, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5644it [1:09:04, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5645it [1:09:04, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5646it [1:09:04, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5647it [1:09:05, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5648it [1:09:07, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5650it [1:09:07, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5651it [1:09:07, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5653it [1:09:08, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5654it [1:09:08, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5655it [1:09:09, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5656it [1:09:10, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5657it [1:09:11, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5659it [1:09:11, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5660it [1:09:12, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5661it [1:09:13, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5662it [1:09:13, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5663it [1:09:14, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5664it [1:09:15, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5666it [1:09:16, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5667it [1:09:16, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5669it [1:09:16, 2.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5670it [1:09:18, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5671it [1:09:19, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5672it [1:09:21, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5673it [1:09:21, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5674it [1:09:22, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5675it [1:09:23, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5676it [1:09:23, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5677it [1:09:25, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5678it [1:09:25, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5679it [1:09:28, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5680it [1:09:30, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5682it [1:09:30, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5685it [1:09:34, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5686it [1:09:34, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5687it [1:09:34, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5688it [1:09:35, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5689it [1:09:35, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5690it [1:09:36, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5691it [1:09:37, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5692it [1:09:37, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5693it [1:09:38, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5694it [1:09:38, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5695it [1:09:38, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5696it [1:09:40, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5697it [1:09:40, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5698it [1:09:40, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5699it [1:09:41, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5700it [1:09:42, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5701it [1:09:42, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5702it [1:09:43, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5703it [1:09:43, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5704it [1:09:43, 2.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5705it [1:09:44, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5706it [1:09:45, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5707it [1:09:45, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5708it [1:09:46, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5709it [1:09:47, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5710it [1:09:48, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5712it [1:09:49, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5713it [1:09:49, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5714it [1:09:50, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5715it [1:09:51, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5716it [1:09:51, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5718it [1:09:53, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5720it [1:09:54, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5721it [1:09:54, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5722it [1:09:55, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5724it [1:09:56, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5725it [1:09:56, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5726it [1:09:57, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5727it [1:09:58, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5728it [1:09:59, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5729it [1:09:59, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5730it [1:09:59, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5731it [1:10:00, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5732it [1:10:00, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5733it [1:10:01, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5734it [1:10:01, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5735it [1:10:02, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5736it [1:10:02, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5737it [1:10:03, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5738it [1:10:03, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5740it [1:10:04, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5741it [1:10:05, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5742it [1:10:06, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5743it [1:10:06, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5744it [1:10:07, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5745it [1:10:08, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5746it [1:10:08, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5747it [1:10:08, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5748it [1:10:09, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5749it [1:10:09, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5750it [1:10:10, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5751it [1:10:11, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5752it [1:10:11, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5753it [1:10:12, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5754it [1:10:12, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5755it [1:10:13, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5756it [1:10:16, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5757it [1:10:16, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5758it [1:10:16, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5760it [1:10:18, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5761it [1:10:21, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5762it [1:10:21, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5765it [1:10:21, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5766it [1:10:23, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5767it [1:10:23, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5768it [1:10:24, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5769it [1:10:25, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5770it [1:10:26, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5771it [1:10:27, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5772it [1:10:27, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5773it [1:10:29, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5774it [1:10:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5775it [1:10:29, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5776it [1:10:30, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5777it [1:10:31, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5778it [1:10:32, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5779it [1:10:33, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5780it [1:10:33, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5781it [1:10:33, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5782it [1:10:34, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5783it [1:10:35, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5784it [1:10:35, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5785it [1:10:36, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5787it [1:10:36, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5788it [1:10:37, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5789it [1:10:38, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5791it [1:10:40, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5794it [1:10:40, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5795it [1:10:41, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5796it [1:10:41, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5797it [1:10:42, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5798it [1:10:43, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5800it [1:10:44, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5801it [1:10:44, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5803it [1:10:44, 2.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5804it [1:10:46, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5805it [1:10:48, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5807it [1:10:48, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5808it [1:10:48, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5809it [1:10:50, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5811it [1:10:50, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5812it [1:10:52, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5813it [1:10:52, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5814it [1:10:53, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5815it [1:10:55, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5816it [1:10:55, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5817it [1:10:58, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5818it [1:10:58, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5820it [1:11:00, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5821it [1:11:00, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5822it [1:11:01, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5823it [1:11:01, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5825it [1:11:02, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5826it [1:11:03, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5827it [1:11:03, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5828it [1:11:04, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5829it [1:11:04, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5830it [1:11:04, 2.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5831it [1:11:06, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5832it [1:11:07, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5833it [1:11:07, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5834it [1:11:07, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5835it [1:11:08, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5836it [1:11:08, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5837it [1:11:09, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5839it [1:11:12, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5840it [1:11:15, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5843it [1:11:15, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5846it [1:11:17, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5847it [1:11:18, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5848it [1:11:18, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5849it [1:11:18, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5851it [1:11:19, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5852it [1:11:21, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5854it [1:11:22, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5856it [1:11:22, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5857it [1:11:23, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5858it [1:11:25, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5859it [1:11:25, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5860it [1:11:25, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5862it [1:11:26, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5863it [1:11:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5864it [1:11:30, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5865it [1:11:31, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5866it [1:11:32, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5867it [1:11:36, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5868it [1:11:38, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5869it [1:11:38, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5871it [1:11:39, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5873it [1:11:40, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5874it [1:11:42, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5876it [1:11:42, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5878it [1:11:43, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5879it [1:11:43, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5880it [1:11:45, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5881it [1:11:45, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5882it [1:11:45, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5883it [1:11:46, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5884it [1:11:46, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5886it [1:11:49, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5887it [1:11:49, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5888it [1:11:50, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5889it [1:11:50, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5890it [1:11:50, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5891it [1:11:51, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5892it [1:11:52, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5893it [1:11:53, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5894it [1:11:53, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5895it [1:11:53, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5896it [1:11:54, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5897it [1:11:54, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5898it [1:11:54, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5899it [1:11:56, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5900it [1:11:57, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5901it [1:11:58, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5902it [1:11:58, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5903it [1:11:58, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5904it [1:12:00, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5905it [1:12:01, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5906it [1:12:01, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5907it [1:12:02, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5908it [1:12:02, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5909it [1:12:02, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5910it [1:12:04, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5912it [1:12:04, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5913it [1:12:05, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5915it [1:12:05, 2.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5916it [1:12:07, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5917it [1:12:08, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5919it [1:12:08, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5920it [1:12:09, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5922it [1:12:10, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5923it [1:12:11, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5925it [1:12:12, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5926it [1:12:12, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5927it [1:12:13, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5928it [1:12:14, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5931it [1:12:14, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5932it [1:12:15, 2.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5933it [1:12:15, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5934it [1:12:17, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5935it [1:12:17, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5936it [1:12:18, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5937it [1:12:18, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5938it [1:12:19, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5939it [1:12:21, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5940it [1:12:23, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5941it [1:12:27, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5942it [1:12:28, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5943it [1:12:30, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5944it [1:12:30, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5945it [1:12:31, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5946it [1:12:35, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5947it [1:12:37, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5948it [1:12:38, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5950it [1:12:43, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5951it [1:12:43, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5952it [1:12:46, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5954it [1:12:49, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5956it [1:12:49, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5957it [1:12:50, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5958it [1:12:53, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5960it [1:12:53, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5961it [1:12:54, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5962it [1:12:54, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5963it [1:12:55, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5964it [1:12:55, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5965it [1:12:56, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5966it [1:12:56, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5967it [1:12:57, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5968it [1:12:57, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5969it [1:12:57, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5970it [1:12:58, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5971it [1:12:59, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5972it [1:12:59, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5973it [1:13:00, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5974it [1:13:00, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5975it [1:13:01, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5976it [1:13:02, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5977it [1:13:04, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5978it [1:13:05, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5980it [1:13:05, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5981it [1:13:06, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5982it [1:13:07, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5983it [1:13:08, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5984it [1:13:09, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5985it [1:13:10, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5986it [1:13:13, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5987it [1:13:13, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5988it [1:13:14, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5989it [1:13:14, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5990it [1:13:16, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5991it [1:13:16, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5992it [1:13:17, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5993it [1:13:18, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5994it [1:13:19, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5995it [1:13:19, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5996it [1:13:19, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5997it [1:13:19, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5998it [1:13:20, 2.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
5999it [1:13:21, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6000it [1:13:21, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6001it [1:13:22, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6002it [1:13:22, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6003it [1:13:23, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6004it [1:13:24, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6005it [1:13:25, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6007it [1:13:26, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6008it [1:13:26, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6009it [1:13:27, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6010it [1:13:27, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6011it [1:13:28, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6013it [1:13:29, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6014it [1:13:29, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6016it [1:13:30, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6017it [1:13:30, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6018it [1:13:31, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6019it [1:13:32, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6020it [1:13:32, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6021it [1:13:33, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6023it [1:13:33, 3.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6024it [1:13:34, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6025it [1:13:35, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6026it [1:13:36, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6027it [1:13:37, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6028it [1:13:38, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6029it [1:13:40, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6031it [1:13:41, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6032it [1:13:42, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6033it [1:13:44, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6034it [1:13:45, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6035it [1:13:46, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6036it [1:13:46, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6037it [1:13:46, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6038it [1:13:46, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6039it [1:13:47, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6040it [1:13:48, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6041it [1:13:49, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6042it [1:13:50, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6044it [1:13:51, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6045it [1:13:51, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6046it [1:13:52, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6047it [1:13:53, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6048it [1:13:54, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6050it [1:13:54, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6051it [1:13:55, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6053it [1:13:57, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6054it [1:13:57, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6055it [1:13:58, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6056it [1:13:58, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6057it [1:13:59, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6058it [1:14:00, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6059it [1:14:00, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6060it [1:14:01, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6061it [1:14:01, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6063it [1:14:03, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6064it [1:14:04, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6065it [1:14:04, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6066it [1:14:05, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6068it [1:14:05, 2.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6069it [1:14:07, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6071it [1:14:08, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6072it [1:14:08, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6073it [1:14:09, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6074it [1:14:10, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6075it [1:14:10, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6077it [1:14:11, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6078it [1:14:12, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6080it [1:14:12, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6081it [1:14:13, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6082it [1:14:13, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6084it [1:14:14, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6086it [1:14:16, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6087it [1:14:17, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6088it [1:14:19, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6089it [1:14:20, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6090it [1:14:20, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6091it [1:14:21, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6092it [1:14:23, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6093it [1:14:24, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6094it [1:14:25, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6095it [1:14:28, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6097it [1:14:29, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6098it [1:14:29, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6100it [1:14:31, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6101it [1:14:32, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6102it [1:14:32, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6103it [1:14:32, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6104it [1:14:34, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6105it [1:14:34, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6106it [1:14:35, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6107it [1:14:35, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6109it [1:14:36, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6111it [1:14:36, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6112it [1:14:38, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6113it [1:14:39, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6114it [1:14:39, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6115it [1:14:39, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6116it [1:14:40, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6117it [1:14:42, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6118it [1:14:43, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6120it [1:14:44, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6121it [1:14:45, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6122it [1:14:46, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6123it [1:14:47, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6124it [1:14:47, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6126it [1:14:48, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6127it [1:14:49, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6128it [1:14:49, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6129it [1:14:50, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6131it [1:14:50, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6132it [1:14:52, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6133it [1:14:53, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6134it [1:14:55, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6136it [1:14:56, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6137it [1:14:56, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6138it [1:14:58, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6139it [1:14:59, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6140it [1:15:00, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6141it [1:15:02, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6142it [1:15:04, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6144it [1:15:05, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6145it [1:15:06, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6146it [1:15:09, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6147it [1:15:09, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6151it [1:15:10, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6152it [1:15:11, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6153it [1:15:12, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6155it [1:15:13, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6156it [1:15:13, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6157it [1:15:14, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6158it [1:15:15, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6159it [1:15:17, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6160it [1:15:17, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6161it [1:15:18, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6162it [1:15:19, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6163it [1:15:20, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6164it [1:15:21, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6167it [1:15:22, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6168it [1:15:23, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6169it [1:15:23, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6170it [1:15:24, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6171it [1:15:24, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6172it [1:15:25, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6173it [1:15:26, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6174it [1:15:26, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6176it [1:15:28, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6177it [1:15:28, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6178it [1:15:29, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6179it [1:15:30, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6180it [1:15:30, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6181it [1:15:31, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6183it [1:15:32, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6185it [1:15:33, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6186it [1:15:33, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6187it [1:15:34, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6188it [1:15:36, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6190it [1:15:36, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6191it [1:15:37, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6193it [1:15:37, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6194it [1:15:39, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6196it [1:15:39, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6197it [1:15:40, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6198it [1:15:40, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6199it [1:15:41, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6200it [1:15:41, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6201it [1:15:42, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6202it [1:15:42, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6203it [1:15:43, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6204it [1:15:44, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6205it [1:15:44, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6206it [1:15:44, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6207it [1:15:45, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6208it [1:15:45, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6209it [1:15:46, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6210it [1:15:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6211it [1:15:50, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6213it [1:15:50, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6214it [1:15:51, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6215it [1:15:52, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6216it [1:15:53, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6218it [1:15:53, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6220it [1:15:54, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6221it [1:15:54, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6222it [1:15:57, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6223it [1:15:57, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6224it [1:15:57, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6225it [1:15:58, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6227it [1:15:59, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6228it [1:16:00, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6229it [1:16:00, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6230it [1:16:01, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6231it [1:16:01, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6232it [1:16:02, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6233it [1:16:03, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6234it [1:16:04, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6235it [1:16:04, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6237it [1:16:07, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6238it [1:16:07, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6240it [1:16:09, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6241it [1:16:10, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6242it [1:16:11, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6243it [1:16:11, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6244it [1:16:12, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6245it [1:16:12, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6246it [1:16:13, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6247it [1:16:14, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6248it [1:16:15, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6250it [1:16:17, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6251it [1:16:18, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6252it [1:16:18, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6256it [1:16:20, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6257it [1:16:21, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6258it [1:16:21, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6259it [1:16:22, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6261it [1:16:23, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6262it [1:16:24, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6263it [1:16:26, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6264it [1:16:26, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6267it [1:16:26, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6268it [1:16:27, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6269it [1:16:29, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6270it [1:16:30, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6272it [1:16:30, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6273it [1:16:30, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6274it [1:16:31, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6275it [1:16:32, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6276it [1:16:33, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6277it [1:16:33, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6278it [1:16:33, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6279it [1:16:34, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6280it [1:16:35, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6281it [1:16:36, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6282it [1:16:37, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6283it [1:16:37, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6285it [1:16:37, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6286it [1:16:38, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6287it [1:16:39, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6289it [1:16:39, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6290it [1:16:40, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6292it [1:16:40, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6293it [1:16:42, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6294it [1:16:43, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6295it [1:16:44, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6297it [1:16:44, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6298it [1:16:45, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6299it [1:16:46, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6300it [1:16:49, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6301it [1:16:50, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6303it [1:16:50, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6304it [1:16:51, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6305it [1:16:52, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6306it [1:16:53, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6307it [1:16:54, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6308it [1:16:54, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6310it [1:16:55, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6311it [1:16:57, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6312it [1:16:57, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6313it [1:16:57, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6314it [1:16:57, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6315it [1:16:58, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6316it [1:16:58, 2.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6317it [1:17:00, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6319it [1:17:00, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6321it [1:17:01, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6322it [1:17:02, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6323it [1:17:03, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6324it [1:17:03, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6326it [1:17:04, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6327it [1:17:04, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6328it [1:17:05, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6329it [1:17:05, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6331it [1:17:06, 2.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6332it [1:17:08, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6333it [1:17:08, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6335it [1:17:09, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6336it [1:17:09, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6337it [1:17:10, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6338it [1:17:10, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6339it [1:17:11, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6340it [1:17:11, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6341it [1:17:12, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6342it [1:17:13, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6343it [1:17:13, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6344it [1:17:16, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6345it [1:17:16, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6346it [1:17:16, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6347it [1:17:16, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6348it [1:17:17, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6349it [1:17:21, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6350it [1:17:22, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6351it [1:17:22, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6354it [1:17:25, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6355it [1:17:26, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6356it [1:17:28, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6357it [1:17:29, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6358it [1:17:29, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6359it [1:17:31, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6360it [1:17:32, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6361it [1:17:32, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6362it [1:17:33, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6363it [1:17:34, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6364it [1:17:34, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6365it [1:17:35, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6366it [1:17:36, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6367it [1:17:36, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6368it [1:17:37, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6369it [1:17:37, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6370it [1:17:38, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6372it [1:17:39, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6373it [1:17:39, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6374it [1:17:40, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6375it [1:17:40, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6376it [1:17:41, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6378it [1:17:42, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6379it [1:17:42, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6380it [1:17:43, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6381it [1:17:43, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6382it [1:17:44, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6384it [1:17:45, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6386it [1:17:45, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6387it [1:17:48, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6389it [1:17:48, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6390it [1:17:48, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6392it [1:17:49, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6393it [1:17:51, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6395it [1:17:52, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6397it [1:17:53, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6398it [1:17:54, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6399it [1:17:55, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6400it [1:17:56, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6401it [1:17:56, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6402it [1:17:58, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6403it [1:17:59, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6405it [1:18:01, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6406it [1:18:01, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6407it [1:18:03, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6408it [1:18:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6409it [1:18:05, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6410it [1:18:08, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6411it [1:18:08, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6412it [1:18:09, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6413it [1:18:10, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6414it [1:18:10, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6415it [1:18:10, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6416it [1:18:13, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6417it [1:18:13, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6418it [1:18:13, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6419it [1:18:14, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6420it [1:18:14, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6421it [1:18:15, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6422it [1:18:17, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6423it [1:18:17, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6424it [1:18:18, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6425it [1:18:18, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6426it [1:18:18, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6427it [1:18:19, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6428it [1:18:20, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6429it [1:18:20, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6431it [1:18:21, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6432it [1:18:21, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6433it [1:18:22, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6434it [1:18:23, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6435it [1:18:24, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6436it [1:18:24, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6437it [1:18:25, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6439it [1:18:25, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6440it [1:18:27, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6442it [1:18:28, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6443it [1:18:28, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6445it [1:18:30, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6446it [1:18:30, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6448it [1:18:31, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6449it [1:18:32, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6450it [1:18:32, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6451it [1:18:33, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6452it [1:18:33, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6453it [1:18:34, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6454it [1:18:35, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6455it [1:18:36, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6456it [1:18:36, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6457it [1:18:37, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6458it [1:18:38, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6459it [1:18:38, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6460it [1:18:39, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6461it [1:18:39, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6463it [1:18:41, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6464it [1:18:41, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6465it [1:18:41, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6466it [1:18:44, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6467it [1:18:47, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6469it [1:18:51, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6473it [1:18:51, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6475it [1:18:53, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6476it [1:18:53, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6477it [1:18:54, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6478it [1:18:54, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6480it [1:18:55, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6481it [1:18:56, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6482it [1:18:57, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6483it [1:18:58, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6486it [1:18:58, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6487it [1:18:59, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6488it [1:18:59, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6489it [1:19:00, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6491it [1:19:00, 2.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6492it [1:19:01, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6493it [1:19:02, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6496it [1:19:02, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6497it [1:19:05, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6498it [1:19:05, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6499it [1:19:06, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6500it [1:19:07, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6502it [1:19:07, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6503it [1:19:08, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6504it [1:19:09, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6505it [1:19:11, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6506it [1:19:11, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6507it [1:19:12, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6508it [1:19:12, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6509it [1:19:13, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6510it [1:19:14, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6511it [1:19:16, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6512it [1:19:17, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6514it [1:19:17, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6515it [1:19:18, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6517it [1:19:19, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6518it [1:19:20, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6519it [1:19:20, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6520it [1:19:21, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6521it [1:19:21, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6522it [1:19:21, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6523it [1:19:23, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6524it [1:19:23, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6525it [1:19:23, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6526it [1:19:23, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6528it [1:19:24, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6529it [1:19:25, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6531it [1:19:26, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6532it [1:19:26, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6533it [1:19:27, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6534it [1:19:29, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6535it [1:19:29, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6536it [1:19:29, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6537it [1:19:31, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6538it [1:19:32, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6539it [1:19:33, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6540it [1:19:34, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6541it [1:19:36, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6542it [1:19:37, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6543it [1:19:37, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6544it [1:19:39, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6545it [1:19:40, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6546it [1:19:41, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6548it [1:19:42, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6549it [1:19:44, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6551it [1:19:44, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6552it [1:19:46, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6554it [1:19:47, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6555it [1:19:47, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6556it [1:19:47, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6557it [1:19:48, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6558it [1:19:49, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6560it [1:19:50, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6561it [1:19:51, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6562it [1:19:51, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6563it [1:19:52, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6564it [1:19:52, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6565it [1:19:52, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6566it [1:19:53, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6567it [1:19:54, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6569it [1:19:55, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6570it [1:19:56, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6572it [1:19:57, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6573it [1:19:58, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6575it [1:19:59, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6576it [1:19:59, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6577it [1:20:00, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6578it [1:20:00, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6579it [1:20:01, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6580it [1:20:02, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6581it [1:20:03, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6582it [1:20:04, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6583it [1:20:05, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6584it [1:20:05, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6585it [1:20:06, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6586it [1:20:08, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6587it [1:20:11, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6588it [1:20:15, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6590it [1:20:19, 2.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6592it [1:20:23, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6595it [1:20:26, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6597it [1:20:26, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6599it [1:20:26, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6600it [1:20:28, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6601it [1:20:29, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6603it [1:20:29, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6604it [1:20:29, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6605it [1:20:30, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6606it [1:20:31, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6607it [1:20:32, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6608it [1:20:33, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6610it [1:20:33, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6611it [1:20:33, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6612it [1:20:35, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6613it [1:20:36, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6615it [1:20:37, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6617it [1:20:37, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6618it [1:20:40, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6619it [1:20:40, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6620it [1:20:42, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6621it [1:20:42, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6622it [1:20:42, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6623it [1:20:44, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6624it [1:20:45, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6625it [1:20:45, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6626it [1:20:45, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6627it [1:20:46, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6628it [1:20:46, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6629it [1:20:49, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6631it [1:20:49, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6632it [1:20:50, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6633it [1:20:51, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6634it [1:20:52, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6635it [1:20:52, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6636it [1:20:53, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6637it [1:20:54, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6638it [1:20:54, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6639it [1:20:55, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6640it [1:20:56, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6642it [1:20:57, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6643it [1:20:58, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6644it [1:20:59, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6645it [1:21:00, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6646it [1:21:00, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6647it [1:21:00, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6649it [1:21:02, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6650it [1:21:02, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6651it [1:21:03, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6652it [1:21:04, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6653it [1:21:04, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6655it [1:21:06, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6656it [1:21:07, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6657it [1:21:07, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6659it [1:21:08, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6660it [1:21:09, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6661it [1:21:09, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6662it [1:21:09, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6664it [1:21:10, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6665it [1:21:11, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6666it [1:21:11, 2.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6667it [1:21:12, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6668it [1:21:13, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6669it [1:21:13, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6670it [1:21:14, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6671it [1:21:14, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6672it [1:21:14, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6673it [1:21:17, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6675it [1:21:17, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6676it [1:21:17, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6677it [1:21:19, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6678it [1:21:19, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6679it [1:21:20, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6681it [1:21:20, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6683it [1:21:22, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6684it [1:21:23, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6685it [1:21:23, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6686it [1:21:23, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6687it [1:21:24, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6689it [1:21:26, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6690it [1:21:26, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6691it [1:21:27, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6693it [1:21:27, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6694it [1:21:28, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6695it [1:21:29, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6696it [1:21:30, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6697it [1:21:30, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6699it [1:21:31, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6700it [1:21:31, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6701it [1:21:32, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6702it [1:21:32, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6703it [1:21:33, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6705it [1:21:33, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6706it [1:21:34, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6707it [1:21:34, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6708it [1:21:35, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6709it [1:21:36, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6710it [1:21:38, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6711it [1:21:38, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6712it [1:21:39, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6714it [1:21:40, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6715it [1:21:40, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6716it [1:21:41, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6718it [1:21:43, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6719it [1:21:43, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6721it [1:21:43, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6722it [1:21:44, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6724it [1:21:46, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6726it [1:21:46, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6727it [1:21:46, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6728it [1:21:47, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6729it [1:21:47, 2.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6730it [1:21:49, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6732it [1:21:49, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6733it [1:21:51, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6734it [1:21:51, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6735it [1:21:52, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6736it [1:21:53, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6737it [1:21:53, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6738it [1:21:54, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6739it [1:21:55, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6740it [1:21:55, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6741it [1:21:56, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6742it [1:21:56, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6743it [1:21:56, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6744it [1:21:58, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6745it [1:21:58, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6746it [1:21:58, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6747it [1:21:59, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6748it [1:21:59, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6750it [1:22:01, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6751it [1:22:01, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6752it [1:22:02, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6754it [1:22:02, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6755it [1:22:03, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6756it [1:22:05, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6757it [1:22:06, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6758it [1:22:08, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6759it [1:22:09, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6760it [1:22:10, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6761it [1:22:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6762it [1:22:13, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6763it [1:22:14, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6765it [1:22:15, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6766it [1:22:17, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6767it [1:22:19, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6768it [1:22:20, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6772it [1:22:21, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6773it [1:22:22, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6774it [1:22:24, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6776it [1:22:24, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6777it [1:22:25, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6778it [1:22:25, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6779it [1:22:27, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6780it [1:22:27, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6781it [1:22:27, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6783it [1:22:28, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6784it [1:22:29, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6785it [1:22:30, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6786it [1:22:31, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6787it [1:22:31, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6788it [1:22:32, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6789it [1:22:33, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6790it [1:22:33, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6791it [1:22:33, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6792it [1:22:34, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6794it [1:22:35, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6795it [1:22:35, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6796it [1:22:36, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6797it [1:22:36, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6798it [1:22:37, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6799it [1:22:38, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6800it [1:22:38, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6801it [1:22:39, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6802it [1:22:40, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6803it [1:22:41, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6805it [1:22:41, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6806it [1:22:43, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6807it [1:22:44, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6808it [1:22:45, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6809it [1:22:45, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6811it [1:22:46, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6812it [1:22:47, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6813it [1:22:48, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6814it [1:22:48, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6815it [1:22:48, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6816it [1:22:49, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6817it [1:22:49, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6818it [1:22:52, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6820it [1:22:52, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6821it [1:22:52, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6823it [1:22:53, 2.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6824it [1:22:55, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6825it [1:22:55, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6828it [1:22:56, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6829it [1:22:57, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6830it [1:22:58, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6832it [1:22:58, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6834it [1:22:59, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6835it [1:23:01, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6839it [1:23:02, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6840it [1:23:02, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6841it [1:23:05, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6843it [1:23:06, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6844it [1:23:06, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6845it [1:23:08, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6846it [1:23:08, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6848it [1:23:09, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6849it [1:23:10, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6850it [1:23:10, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6851it [1:23:12, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6852it [1:23:12, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6853it [1:23:13, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6855it [1:23:13, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6856it [1:23:15, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6857it [1:23:16, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6858it [1:23:16, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6859it [1:23:16, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6860it [1:23:17, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6861it [1:23:18, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6862it [1:23:19, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6863it [1:23:19, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6864it [1:23:20, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6865it [1:23:22, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6867it [1:23:22, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6869it [1:23:22, 2.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6870it [1:23:23, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6871it [1:23:24, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6872it [1:23:25, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6874it [1:23:25, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6875it [1:23:25, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6877it [1:23:27, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6878it [1:23:28, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6879it [1:23:28, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6880it [1:23:29, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6881it [1:23:29, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6882it [1:23:30, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6883it [1:23:31, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6885it [1:23:31, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6886it [1:23:32, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6887it [1:23:32, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6888it [1:23:33, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6889it [1:23:34, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6890it [1:23:34, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6892it [1:23:34, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6893it [1:23:35, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6894it [1:23:35, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6895it [1:23:36, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6896it [1:23:37, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6897it [1:23:37, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6900it [1:23:38, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6901it [1:23:39, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6902it [1:23:40, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6903it [1:23:40, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6904it [1:23:40, 2.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6905it [1:23:40, 2.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6906it [1:23:41, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6907it [1:23:42, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6908it [1:23:43, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6909it [1:23:43, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6910it [1:23:43, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6912it [1:23:44, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6913it [1:23:45, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6915it [1:23:46, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6916it [1:23:46, 2.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6917it [1:23:46, 2.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6918it [1:23:47, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6919it [1:23:47, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6920it [1:23:48, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6922it [1:23:49, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6923it [1:23:50, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6925it [1:23:51, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6927it [1:23:52, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6928it [1:23:53, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6930it [1:23:54, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6931it [1:23:54, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6932it [1:23:55, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6934it [1:23:57, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6936it [1:23:58, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6937it [1:23:59, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6938it [1:23:59, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6940it [1:24:00, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6941it [1:24:00, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6942it [1:24:02, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6945it [1:24:02, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6946it [1:24:03, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6947it [1:24:03, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6948it [1:24:04, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6949it [1:24:05, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6951it [1:24:05, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6952it [1:24:06, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6953it [1:24:06, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6954it [1:24:07, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6955it [1:24:07, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6956it [1:24:08, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6957it [1:24:09, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6959it [1:24:09, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6960it [1:24:10, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6962it [1:24:11, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6963it [1:24:12, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6964it [1:24:12, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6965it [1:24:13, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6966it [1:24:13, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6967it [1:24:14, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6968it [1:24:16, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6969it [1:24:17, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6970it [1:24:17, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6971it [1:24:18, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6972it [1:24:18, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6973it [1:24:19, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6974it [1:24:20, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6975it [1:24:21, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6976it [1:24:23, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6977it [1:24:23, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6978it [1:24:24, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6979it [1:24:25, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6980it [1:24:26, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6982it [1:24:26, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6984it [1:24:29, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6986it [1:24:30, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6987it [1:24:30, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6988it [1:24:32, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6990it [1:24:33, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6991it [1:24:33, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6993it [1:24:33, 2.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6994it [1:24:36, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6995it [1:24:36, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6996it [1:24:37, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
6998it [1:24:37, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7000it [1:24:39, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7001it [1:24:40, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7002it [1:24:40, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7003it [1:24:40, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7004it [1:24:41, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7005it [1:24:41, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7006it [1:24:43, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7007it [1:24:43, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7009it [1:24:44, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7010it [1:24:44, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7011it [1:24:46, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7012it [1:24:46, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7014it [1:24:47, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7015it [1:24:48, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7016it [1:24:48, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7017it [1:24:49, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7019it [1:24:49, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7020it [1:24:50, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7021it [1:24:51, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7022it [1:24:51, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7023it [1:24:52, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7024it [1:24:53, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7025it [1:24:53, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7027it [1:24:54, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7028it [1:24:55, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7029it [1:24:56, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7030it [1:24:57, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7031it [1:24:57, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7032it [1:24:57, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7033it [1:25:00, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7034it [1:25:01, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7035it [1:25:01, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7036it [1:25:02, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7037it [1:25:02, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7038it [1:25:03, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7039it [1:25:04, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7040it [1:25:05, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7041it [1:25:06, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7042it [1:25:08, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7043it [1:25:09, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7044it [1:25:10, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7045it [1:25:10, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7046it [1:25:11, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7047it [1:25:11, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7048it [1:25:12, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7049it [1:25:13, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7050it [1:25:13, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7051it [1:25:14, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7053it [1:25:14, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7054it [1:25:16, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7055it [1:25:17, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7056it [1:25:17, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7057it [1:25:19, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7058it [1:25:20, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7059it [1:25:20, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7060it [1:25:20, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7061it [1:25:21, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7062it [1:25:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7063it [1:25:24, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7064it [1:25:25, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7065it [1:25:26, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7066it [1:25:26, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7067it [1:25:28, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7068it [1:25:30, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7070it [1:25:31, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7072it [1:25:32, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7073it [1:25:33, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7074it [1:25:33, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7075it [1:25:35, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7076it [1:25:35, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7077it [1:25:36, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7078it [1:25:36, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7079it [1:25:37, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7080it [1:25:38, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7081it [1:25:38, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7082it [1:25:39, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7083it [1:25:39, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7084it [1:25:40, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7085it [1:25:41, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7086it [1:25:44, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7087it [1:25:44, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7088it [1:25:44, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7089it [1:25:45, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7090it [1:25:46, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7091it [1:25:47, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7092it [1:25:48, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7093it [1:25:48, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7094it [1:25:49, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7095it [1:25:49, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7097it [1:25:50, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7098it [1:25:51, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7099it [1:25:51, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7101it [1:25:52, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7102it [1:25:52, 2.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7103it [1:25:53, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7104it [1:25:54, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7105it [1:25:54, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7106it [1:25:54, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7107it [1:25:55, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7109it [1:25:57, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7110it [1:25:57, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7112it [1:25:57, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7114it [1:25:58, 3.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7115it [1:26:00, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7116it [1:26:01, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7119it [1:26:01, 2.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7120it [1:26:02, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7121it [1:26:04, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7122it [1:26:05, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7124it [1:26:06, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7125it [1:26:07, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7126it [1:26:08, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7127it [1:26:09, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7128it [1:26:10, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7129it [1:26:11, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7130it [1:26:11, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7131it [1:26:12, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7132it [1:26:14, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7133it [1:26:14, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7135it [1:26:15, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7136it [1:26:15, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7137it [1:26:16, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7138it [1:26:16, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7139it [1:26:17, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7140it [1:26:17, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7141it [1:26:18, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7142it [1:26:18, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7143it [1:26:19, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7144it [1:26:19, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7145it [1:26:20, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7146it [1:26:20, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7147it [1:26:20, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7148it [1:26:21, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7149it [1:26:23, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7150it [1:26:23, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7151it [1:26:23, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7152it [1:26:23, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7153it [1:26:24, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7154it [1:26:25, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7155it [1:26:26, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7157it [1:26:26, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7158it [1:26:27, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7159it [1:26:28, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7160it [1:26:29, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7161it [1:26:30, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7163it [1:26:30, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7166it [1:26:32, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7167it [1:26:33, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7169it [1:26:33, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7170it [1:26:34, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7172it [1:26:36, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7173it [1:26:37, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7174it [1:26:37, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7175it [1:26:38, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7176it [1:26:38, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7177it [1:26:39, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7178it [1:26:42, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7179it [1:26:42, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7180it [1:26:42, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7181it [1:26:43, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7182it [1:26:44, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7183it [1:26:45, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7184it [1:26:47, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7186it [1:26:47, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7187it [1:26:48, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7188it [1:26:49, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7189it [1:26:55, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7190it [1:26:56, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7191it [1:26:57, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7192it [1:26:58, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7193it [1:27:01, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7194it [1:27:03, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7195it [1:27:04, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7196it [1:27:04, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7198it [1:27:06, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7199it [1:27:08, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7200it [1:27:08, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7201it [1:27:08, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7202it [1:27:09, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7203it [1:27:09, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7204it [1:27:10, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7205it [1:27:10, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7206it [1:27:12, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7208it [1:27:12, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7211it [1:27:14, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7212it [1:27:15, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7215it [1:27:15, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7216it [1:27:15, 2.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7217it [1:27:16, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7218it [1:27:18, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7220it [1:27:18, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7222it [1:27:18, 2.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7223it [1:27:19, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7224it [1:27:20, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7225it [1:27:20, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7226it [1:27:22, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7227it [1:27:22, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7228it [1:27:23, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7229it [1:27:25, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7230it [1:27:28, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7233it [1:27:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7236it [1:27:33, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7237it [1:27:34, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7238it [1:27:34, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7239it [1:27:34, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7240it [1:27:40, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7241it [1:27:40, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7243it [1:27:40, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7244it [1:27:40, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7245it [1:27:43, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7246it [1:27:44, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7247it [1:27:44, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7248it [1:27:44, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7249it [1:27:45, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7250it [1:27:45, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7251it [1:27:47, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7252it [1:27:49, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7253it [1:27:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7254it [1:27:53, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7256it [1:27:53, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7258it [1:27:54, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7259it [1:27:56, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7260it [1:27:57, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7261it [1:27:57, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7262it [1:27:58, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7263it [1:27:59, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7264it [1:28:00, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7265it [1:28:01, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7266it [1:28:03, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7267it [1:28:04, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7268it [1:28:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7269it [1:28:07, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7270it [1:28:07, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7272it [1:28:08, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7273it [1:28:10, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7274it [1:28:11, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7276it [1:28:11, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7278it [1:28:12, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7279it [1:28:13, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7280it [1:28:14, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7282it [1:28:15, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7283it [1:28:16, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7284it [1:28:17, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7285it [1:28:17, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7286it [1:28:18, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7287it [1:28:19, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7288it [1:28:20, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7289it [1:28:22, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7290it [1:28:23, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7291it [1:28:23, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7292it [1:28:24, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7293it [1:28:25, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7294it [1:28:25, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7295it [1:28:26, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7296it [1:28:27, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7297it [1:28:27, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7298it [1:28:27, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7299it [1:28:28, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7300it [1:28:28, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7301it [1:28:32, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7303it [1:28:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7307it [1:28:36, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7308it [1:28:38, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7309it [1:28:40, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7310it [1:28:40, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7311it [1:28:40, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7312it [1:28:42, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7313it [1:28:44, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7314it [1:28:45, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7315it [1:28:46, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7316it [1:28:47, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7318it [1:28:47, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7319it [1:28:48, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7320it [1:28:49, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7321it [1:28:50, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7322it [1:28:50, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7324it [1:28:51, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7325it [1:28:51, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7326it [1:28:52, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7327it [1:28:53, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7328it [1:28:53, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7329it [1:28:53, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7330it [1:28:54, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7331it [1:28:55, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7332it [1:28:56, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7333it [1:28:56, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7336it [1:28:58, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7337it [1:28:59, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7338it [1:29:00, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7339it [1:29:01, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7340it [1:29:01, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7341it [1:29:01, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7342it [1:29:03, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7343it [1:29:04, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7344it [1:29:05, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7346it [1:29:05, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7347it [1:29:07, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7348it [1:29:08, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7349it [1:29:10, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7350it [1:29:10, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7351it [1:29:12, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7352it [1:29:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7353it [1:29:16, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7354it [1:29:17, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7356it [1:29:18, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7357it [1:29:18, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7358it [1:29:20, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7359it [1:29:20, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7361it [1:29:21, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7362it [1:29:21, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7363it [1:29:22, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7364it [1:29:22, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7365it [1:29:23, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7366it [1:29:24, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7367it [1:29:24, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7368it [1:29:24, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7369it [1:29:24, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7370it [1:29:25, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7371it [1:29:26, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7372it [1:29:27, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7373it [1:29:28, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7374it [1:29:28, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7375it [1:29:30, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7376it [1:29:30, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7377it [1:29:31, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7378it [1:29:32, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7379it [1:29:32, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7381it [1:29:34, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7382it [1:29:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7385it [1:29:37, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7388it [1:29:40, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7390it [1:29:40, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7391it [1:29:41, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7392it [1:29:41, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7393it [1:29:42, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7394it [1:29:42, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7395it [1:29:43, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7396it [1:29:43, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7397it [1:29:44, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7398it [1:29:44, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7399it [1:29:45, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7400it [1:29:45, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7401it [1:29:46, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7403it [1:29:47, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7404it [1:29:47, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7405it [1:29:48, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7407it [1:29:49, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7408it [1:29:49, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7409it [1:29:49, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7410it [1:29:50, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7411it [1:29:51, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7412it [1:29:52, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7413it [1:29:52, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7414it [1:29:53, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7415it [1:29:53, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7416it [1:29:53, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7417it [1:29:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7418it [1:30:02, 2.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7422it [1:30:06, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7424it [1:30:06, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7428it [1:30:09, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7431it [1:30:09, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7432it [1:30:09, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7433it [1:30:10, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7434it [1:30:12, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7435it [1:30:12, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7437it [1:30:13, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7438it [1:30:14, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7439it [1:30:14, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7440it [1:30:15, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7441it [1:30:15, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7442it [1:30:16, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7443it [1:30:17, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7444it [1:30:17, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7445it [1:30:18, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7446it [1:30:18, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7447it [1:30:19, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7448it [1:30:20, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7449it [1:30:21, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7450it [1:30:21, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7451it [1:30:21, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7452it [1:30:23, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7453it [1:30:24, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7454it [1:30:26, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7455it [1:30:27, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7457it [1:30:28, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7459it [1:30:30, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7460it [1:30:31, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7461it [1:30:32, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7462it [1:30:33, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7463it [1:30:34, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7464it [1:30:36, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7465it [1:30:37, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7466it [1:30:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7467it [1:30:39, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7468it [1:30:40, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7470it [1:30:40, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7471it [1:30:41, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7472it [1:30:42, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7474it [1:30:43, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7475it [1:30:43, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7477it [1:30:43, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7478it [1:30:44, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7479it [1:30:45, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7480it [1:30:46, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7482it [1:30:46, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7484it [1:30:47, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7485it [1:30:47, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7486it [1:30:49, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7487it [1:30:49, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7488it [1:30:50, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7490it [1:30:50, 2.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7491it [1:30:51, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7492it [1:30:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7494it [1:30:55, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7495it [1:30:55, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7496it [1:30:56, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7497it [1:30:57, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7498it [1:30:58, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7499it [1:30:59, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7502it [1:30:59, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7503it [1:31:01, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7504it [1:31:02, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7505it [1:31:04, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7506it [1:31:04, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7507it [1:31:05, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7508it [1:31:06, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7509it [1:31:08, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7510it [1:31:09, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7511it [1:31:10, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7512it [1:31:10, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7513it [1:31:11, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7514it [1:31:13, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7515it [1:31:14, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7516it [1:31:15, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7517it [1:31:15, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7518it [1:31:15, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7520it [1:31:17, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7521it [1:31:17, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7522it [1:31:17, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7523it [1:31:18, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7524it [1:31:18, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7525it [1:31:19, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7526it [1:31:20, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7527it [1:31:20, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7528it [1:31:21, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7530it [1:31:22, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7531it [1:31:23, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7532it [1:31:23, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7533it [1:31:24, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7534it [1:31:25, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7535it [1:31:25, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7536it [1:31:27, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7537it [1:31:28, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7538it [1:31:28, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7539it [1:31:29, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7541it [1:31:30, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7542it [1:31:31, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7543it [1:31:32, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7544it [1:31:32, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7545it [1:31:32, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7546it [1:31:33, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7547it [1:31:34, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7548it [1:31:35, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7549it [1:31:35, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7551it [1:31:35, 2.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7552it [1:31:36, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7553it [1:31:37, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7554it [1:31:38, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7555it [1:31:38, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7556it [1:31:39, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7557it [1:31:40, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7558it [1:31:41, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7559it [1:31:42, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7560it [1:31:42, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7561it [1:31:44, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7563it [1:31:45, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7564it [1:31:47, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7565it [1:31:48, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7566it [1:31:48, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7567it [1:31:49, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7568it [1:31:49, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7569it [1:31:49, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7570it [1:31:51, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7571it [1:31:51, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7572it [1:31:52, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7573it [1:31:52, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7575it [1:31:53, 2.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7576it [1:31:54, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7577it [1:31:54, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7579it [1:31:55, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7580it [1:31:55, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7581it [1:31:57, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7582it [1:31:58, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7583it [1:31:59, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7584it [1:32:01, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7585it [1:32:02, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7587it [1:32:04, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7588it [1:32:07, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7589it [1:32:07, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7590it [1:32:07, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7591it [1:32:08, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7592it [1:32:08, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7593it [1:32:10, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7594it [1:32:10, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7596it [1:32:11, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7598it [1:32:12, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7599it [1:32:14, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7600it [1:32:15, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7601it [1:32:15, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7602it [1:32:15, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7603it [1:32:16, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7604it [1:32:17, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7605it [1:32:18, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7606it [1:32:18, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7607it [1:32:19, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7608it [1:32:19, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7609it [1:32:20, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7610it [1:32:21, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7611it [1:32:22, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7612it [1:32:23, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7613it [1:32:23, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7614it [1:32:24, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7615it [1:32:24, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7616it [1:32:24, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7617it [1:32:25, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7618it [1:32:25, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7619it [1:32:26, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7620it [1:32:27, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7621it [1:32:27, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7623it [1:32:28, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7624it [1:32:29, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7625it [1:32:31, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7626it [1:32:31, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7629it [1:32:33, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7630it [1:32:36, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7632it [1:32:37, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7633it [1:32:37, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7634it [1:32:38, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7635it [1:32:41, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7636it [1:32:42, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7637it [1:32:43, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7638it [1:32:44, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7639it [1:32:44, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7640it [1:32:45, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7641it [1:32:46, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7642it [1:32:46, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7643it [1:32:46, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7644it [1:32:46, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7645it [1:32:47, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7646it [1:32:48, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7647it [1:32:49, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7650it [1:32:49, 2.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7651it [1:32:50, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7652it [1:32:51, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7653it [1:32:51, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7654it [1:32:52, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7655it [1:32:53, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7657it [1:32:53, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7658it [1:32:54, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7659it [1:32:54, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7660it [1:32:55, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7662it [1:32:56, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7664it [1:32:57, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7665it [1:32:58, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7666it [1:33:01, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7667it [1:33:01, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7668it [1:33:02, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7669it [1:33:03, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7670it [1:33:03, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7671it [1:33:05, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7672it [1:33:06, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7673it [1:33:08, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7674it [1:33:10, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7675it [1:33:10, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7676it [1:33:11, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7677it [1:33:11, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7678it [1:33:11, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7679it [1:33:12, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7680it [1:33:14, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7681it [1:33:15, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7683it [1:33:15, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7684it [1:33:16, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7685it [1:33:16, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7686it [1:33:17, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7687it [1:33:18, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7688it [1:33:18, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7689it [1:33:19, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7690it [1:33:19, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7691it [1:33:22, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7692it [1:33:27, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7696it [1:33:27, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7698it [1:33:29, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7699it [1:33:30, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7700it [1:33:30, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7701it [1:33:30, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7703it [1:33:32, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7704it [1:33:32, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7705it [1:33:33, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7707it [1:33:35, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7708it [1:33:35, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7709it [1:33:36, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7710it [1:33:37, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7711it [1:33:38, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7712it [1:33:39, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7713it [1:33:39, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7715it [1:33:40, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7716it [1:33:41, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7717it [1:33:43, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7719it [1:33:44, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7720it [1:33:44, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7721it [1:33:46, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7722it [1:33:46, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7723it [1:33:49, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7724it [1:33:49, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7725it [1:33:50, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7726it [1:33:51, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7727it [1:33:53, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7728it [1:33:54, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7731it [1:33:54, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7733it [1:33:56, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7734it [1:33:56, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7735it [1:33:57, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7737it [1:33:58, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7738it [1:33:58, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7739it [1:33:58, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7740it [1:33:59, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7741it [1:34:00, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7742it [1:34:00, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7744it [1:34:02, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7745it [1:34:04, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7746it [1:34:04, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7747it [1:34:05, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7749it [1:34:08, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7750it [1:34:10, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7751it [1:34:10, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7753it [1:34:10, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7754it [1:34:11, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7755it [1:34:11, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7756it [1:34:14, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7758it [1:34:14, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7760it [1:34:16, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7761it [1:34:18, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7762it [1:34:19, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7763it [1:34:19, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7764it [1:34:20, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7765it [1:34:22, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7766it [1:34:24, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7767it [1:34:25, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7768it [1:34:25, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7769it [1:34:25, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7770it [1:34:26, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7771it [1:34:27, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7772it [1:34:28, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7773it [1:34:30, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7774it [1:34:30, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7775it [1:34:30, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7777it [1:34:31, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7778it [1:34:32, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7779it [1:34:32, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7780it [1:34:33, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7781it [1:34:33, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7783it [1:34:34, 2.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7784it [1:34:35, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7785it [1:34:36, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7786it [1:34:36, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7788it [1:34:37, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7789it [1:34:37, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7790it [1:34:40, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7791it [1:34:41, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7792it [1:34:43, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7793it [1:34:43, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7795it [1:34:45, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7796it [1:34:45, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7797it [1:34:46, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7798it [1:34:47, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7799it [1:34:47, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7801it [1:34:48, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7802it [1:34:48, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7803it [1:34:49, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7804it [1:34:49, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7805it [1:34:50, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7806it [1:34:50, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7807it [1:34:51, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7808it [1:34:52, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7809it [1:34:53, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7810it [1:34:54, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7812it [1:34:54, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7813it [1:34:58, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7814it [1:34:59, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7815it [1:34:59, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7816it [1:34:59, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7817it [1:35:00, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7818it [1:35:02, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7820it [1:35:02, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7821it [1:35:02, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7822it [1:35:03, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7823it [1:35:04, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7824it [1:35:06, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7825it [1:35:06, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7829it [1:35:07, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7830it [1:35:08, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7831it [1:35:09, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7832it [1:35:09, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7833it [1:35:09, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7834it [1:35:10, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7835it [1:35:10, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7836it [1:35:13, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7837it [1:35:14, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7838it [1:35:14, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7840it [1:35:14, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7841it [1:35:17, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7842it [1:35:18, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7843it [1:35:18, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7844it [1:35:19, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7845it [1:35:20, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7846it [1:35:21, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7847it [1:35:21, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7848it [1:35:24, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7849it [1:35:26, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7851it [1:35:27, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7852it [1:35:27, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7853it [1:35:29, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7854it [1:35:31, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7855it [1:35:32, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7856it [1:35:32, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7857it [1:35:34, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7858it [1:35:35, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7859it [1:35:35, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7860it [1:35:35, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7861it [1:35:37, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7862it [1:35:37, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7863it [1:35:37, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7864it [1:35:38, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7865it [1:35:38, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7866it [1:35:38, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7867it [1:35:39, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7868it [1:35:40, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7870it [1:35:40, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7871it [1:35:41, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7872it [1:35:42, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7873it [1:35:42, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7874it [1:35:43, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7875it [1:35:43, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7877it [1:35:44, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7879it [1:35:45, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7880it [1:35:45, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7881it [1:35:47, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7883it [1:35:47, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7884it [1:35:48, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7885it [1:35:49, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7887it [1:35:50, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7888it [1:35:51, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7889it [1:35:51, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7890it [1:35:52, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7892it [1:35:54, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7894it [1:35:54, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7896it [1:35:56, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7897it [1:35:56, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7899it [1:35:57, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7900it [1:35:57, 2.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7901it [1:35:57, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7902it [1:35:58, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7903it [1:35:59, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7904it [1:35:59, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7906it [1:36:00, 2.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7907it [1:36:01, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7908it [1:36:02, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7910it [1:36:03, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7911it [1:36:03, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7912it [1:36:04, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7913it [1:36:04, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7914it [1:36:05, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7915it [1:36:06, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7916it [1:36:07, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7917it [1:36:07, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7918it [1:36:08, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7919it [1:36:09, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7920it [1:36:09, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7921it [1:36:11, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7923it [1:36:12, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7924it [1:36:12, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7925it [1:36:13, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7927it [1:36:15, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7928it [1:36:15, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7929it [1:36:15, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7930it [1:36:17, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7931it [1:36:17, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7932it [1:36:18, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7933it [1:36:18, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7936it [1:36:19, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7937it [1:36:20, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7938it [1:36:20, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7939it [1:36:21, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7941it [1:36:21, 2.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7942it [1:36:23, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7943it [1:36:23, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7944it [1:36:23, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7945it [1:36:24, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7947it [1:36:24, 3.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7948it [1:36:26, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7950it [1:36:26, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7952it [1:36:27, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7954it [1:36:31, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7956it [1:36:31, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7957it [1:36:31, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7958it [1:36:32, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7959it [1:36:36, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7960it [1:36:37, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7961it [1:36:37, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7962it [1:36:38, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7963it [1:36:38, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7964it [1:36:40, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7965it [1:36:42, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7967it [1:36:42, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7968it [1:36:43, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7969it [1:36:43, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7970it [1:36:45, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7971it [1:36:46, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7972it [1:36:46, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7973it [1:36:48, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7974it [1:36:48, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7975it [1:36:49, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7976it [1:36:49, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7977it [1:36:50, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7978it [1:36:50, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7979it [1:36:51, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7980it [1:36:52, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7981it [1:36:54, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7982it [1:36:55, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7986it [1:36:55, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7987it [1:36:56, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7988it [1:36:57, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7989it [1:36:58, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7990it [1:36:58, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7991it [1:36:59, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7992it [1:37:00, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7993it [1:37:00, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7994it [1:37:01, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7995it [1:37:02, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7997it [1:37:03, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7998it [1:37:04, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
7999it [1:37:04, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8000it [1:37:04, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8001it [1:37:06, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8002it [1:37:07, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8003it [1:37:08, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8005it [1:37:08, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8006it [1:37:09, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8007it [1:37:10, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8008it [1:37:11, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8009it [1:37:11, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8010it [1:37:11, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8011it [1:37:12, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8012it [1:37:13, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8014it [1:37:15, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8015it [1:37:16, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8017it [1:37:16, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8018it [1:37:18, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8019it [1:37:18, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8020it [1:37:20, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8021it [1:37:24, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8025it [1:37:24, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8027it [1:37:28, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8029it [1:37:28, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8031it [1:37:29, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8032it [1:37:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8033it [1:37:35, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8038it [1:37:39, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8039it [1:37:46, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8044it [1:37:47, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8045it [1:37:49, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8046it [1:37:49, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8048it [1:37:51, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8049it [1:37:51, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8050it [1:37:53, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8051it [1:37:54, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8052it [1:37:54, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8053it [1:37:54, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8054it [1:37:55, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8056it [1:37:57, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8057it [1:37:57, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8059it [1:37:57, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8061it [1:37:58, 2.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8062it [1:37:59, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8063it [1:38:00, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8065it [1:38:01, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8066it [1:38:01, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8068it [1:38:02, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8069it [1:38:02, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8070it [1:38:03, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8071it [1:38:03, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8072it [1:38:04, 2.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8073it [1:38:05, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8074it [1:38:05, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8075it [1:38:05, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8077it [1:38:06, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8078it [1:38:07, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8079it [1:38:08, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8080it [1:38:09, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8081it [1:38:10, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8082it [1:38:10, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8084it [1:38:10, 2.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8085it [1:38:11, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8087it [1:38:12, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8088it [1:38:12, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8090it [1:38:13, 2.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8091it [1:38:16, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8094it [1:38:16, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8095it [1:38:17, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8096it [1:38:17, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8097it [1:38:19, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8098it [1:38:19, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8100it [1:38:20, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8101it [1:38:20, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8103it [1:38:21, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8104it [1:38:22, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8105it [1:38:22, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8106it [1:38:23, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8107it [1:38:23, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8108it [1:38:24, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8109it [1:38:25, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8111it [1:38:26, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8113it [1:38:26, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8114it [1:38:28, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8115it [1:38:29, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8116it [1:38:29, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8117it [1:38:31, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8118it [1:38:32, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8119it [1:38:32, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8120it [1:38:32, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8121it [1:38:34, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8122it [1:38:37, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8123it [1:38:39, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8124it [1:38:40, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8125it [1:38:42, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8126it [1:38:43, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8127it [1:38:44, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8128it [1:38:46, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8129it [1:38:46, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8130it [1:38:47, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8131it [1:38:48, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8132it [1:38:48, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8134it [1:38:49, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8135it [1:38:50, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8136it [1:38:50, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8137it [1:38:51, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8138it [1:38:52, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8139it [1:38:52, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8140it [1:38:53, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8141it [1:38:53, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8142it [1:38:53, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8143it [1:38:55, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8144it [1:38:56, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8145it [1:38:56, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8147it [1:38:57, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8148it [1:38:58, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8149it [1:38:58, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8150it [1:38:58, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8151it [1:38:59, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8152it [1:39:00, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8153it [1:39:00, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8154it [1:39:01, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8155it [1:39:01, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8156it [1:39:01, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8157it [1:39:02, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8158it [1:39:02, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8160it [1:39:05, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8162it [1:39:06, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8163it [1:39:07, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8164it [1:39:07, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8165it [1:39:07, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8166it [1:39:09, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8168it [1:39:10, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8169it [1:39:11, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8170it [1:39:11, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8171it [1:39:11, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8172it [1:39:13, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8173it [1:39:14, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8174it [1:39:14, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8176it [1:39:14, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8177it [1:39:15, 2.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8178it [1:39:17, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8179it [1:39:18, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8180it [1:39:18, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8181it [1:39:19, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8182it [1:39:19, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8184it [1:39:21, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8185it [1:39:22, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8186it [1:39:22, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8187it [1:39:22, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8188it [1:39:23, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8190it [1:39:25, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8192it [1:39:25, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8193it [1:39:25, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8194it [1:39:26, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8195it [1:39:27, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8196it [1:39:28, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8197it [1:39:29, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8198it [1:39:29, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8199it [1:39:29, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8200it [1:39:32, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8201it [1:39:32, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8202it [1:39:33, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8203it [1:39:34, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8204it [1:39:35, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8206it [1:39:35, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8207it [1:39:37, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8208it [1:39:38, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8210it [1:39:38, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8211it [1:39:38, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8213it [1:39:40, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8214it [1:39:42, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8215it [1:39:43, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8217it [1:39:43, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8218it [1:39:45, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8219it [1:39:45, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8220it [1:39:46, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8222it [1:39:46, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8223it [1:39:47, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8224it [1:39:48, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8225it [1:39:48, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8226it [1:39:49, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8227it [1:39:49, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8228it [1:39:50, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8229it [1:39:50, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8230it [1:39:51, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8231it [1:39:52, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8232it [1:39:53, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8233it [1:39:53, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8234it [1:39:53, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8235it [1:39:53, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8236it [1:39:54, 2.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8237it [1:39:55, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8238it [1:39:55, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8239it [1:39:56, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8240it [1:39:56, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8242it [1:39:57, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8243it [1:39:59, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8244it [1:40:00, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8245it [1:40:01, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8246it [1:40:01, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8247it [1:40:02, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8249it [1:40:02, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8250it [1:40:03, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8251it [1:40:04, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8253it [1:40:05, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8255it [1:40:06, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8256it [1:40:07, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8257it [1:40:07, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8258it [1:40:08, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8259it [1:40:09, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8260it [1:40:09, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8261it [1:40:10, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8262it [1:40:10, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8264it [1:40:11, 2.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8265it [1:40:12, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8266it [1:40:12, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8267it [1:40:13, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8268it [1:40:13, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8269it [1:40:14, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8270it [1:40:14, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8271it [1:40:15, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8272it [1:40:16, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8273it [1:40:18, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8274it [1:40:18, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8275it [1:40:19, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8277it [1:40:21, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8278it [1:40:21, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8279it [1:40:23, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8280it [1:40:24, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8281it [1:40:27, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8282it [1:40:27, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8283it [1:40:28, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8284it [1:40:30, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8285it [1:40:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8286it [1:40:33, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8288it [1:40:33, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8289it [1:40:34, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8290it [1:40:36, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8291it [1:40:36, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8292it [1:40:38, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8293it [1:40:38, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8294it [1:40:38, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8296it [1:40:42, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8297it [1:40:43, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8298it [1:40:43, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8299it [1:40:44, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8300it [1:40:44, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8301it [1:40:45, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8302it [1:40:46, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8303it [1:40:47, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8305it [1:40:47, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8306it [1:40:49, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8307it [1:40:49, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8308it [1:40:50, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8311it [1:40:51, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8312it [1:40:54, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8314it [1:40:55, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8315it [1:40:55, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8316it [1:40:55, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8317it [1:40:56, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8318it [1:40:57, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8319it [1:40:58, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8320it [1:40:58, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8321it [1:40:59, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8323it [1:40:59, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8324it [1:41:00, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8325it [1:41:02, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8326it [1:41:02, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8327it [1:41:02, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8328it [1:41:03, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8329it [1:41:04, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8330it [1:41:04, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8331it [1:41:05, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8332it [1:41:05, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8334it [1:41:06, 2.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8335it [1:41:07, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8336it [1:41:08, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8337it [1:41:08, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8338it [1:41:08, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8339it [1:41:09, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8340it [1:41:09, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8341it [1:41:11, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8343it [1:41:12, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8344it [1:41:13, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8345it [1:41:13, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8346it [1:41:13, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8347it [1:41:14, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8348it [1:41:14, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8349it [1:41:15, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8350it [1:41:16, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8351it [1:41:16, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8353it [1:41:17, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8354it [1:41:19, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8355it [1:41:19, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8357it [1:41:19, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8358it [1:41:20, 2.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8359it [1:41:21, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8360it [1:41:22, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8361it [1:41:22, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8363it [1:41:22, 2.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8364it [1:41:22, 3.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8365it [1:41:24, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8366it [1:41:25, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8367it [1:41:25, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8368it [1:41:25, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8369it [1:41:26, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8370it [1:41:27, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8371it [1:41:27, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8372it [1:41:27, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8373it [1:41:28, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8374it [1:41:28, 2.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8375it [1:41:30, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8376it [1:41:31, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8377it [1:41:31, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8378it [1:41:32, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8379it [1:41:33, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8380it [1:41:34, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8381it [1:41:35, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8382it [1:41:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8383it [1:41:38, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8384it [1:41:39, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8385it [1:41:40, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8387it [1:41:41, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8388it [1:41:42, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8389it [1:41:42, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8391it [1:41:43, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8393it [1:41:45, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8394it [1:41:46, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8395it [1:41:46, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8396it [1:41:47, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8397it [1:41:47, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8398it [1:41:48, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8399it [1:41:49, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8401it [1:41:49, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8402it [1:41:50, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8403it [1:41:52, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8404it [1:41:53, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8405it [1:41:54, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8408it [1:41:54, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8409it [1:41:55, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8410it [1:41:56, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8411it [1:41:59, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8413it [1:42:00, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8414it [1:42:00, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8415it [1:42:01, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8416it [1:42:02, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8417it [1:42:03, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8418it [1:42:03, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8419it [1:42:03, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8420it [1:42:04, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8421it [1:42:04, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8422it [1:42:05, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8423it [1:42:05, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8424it [1:42:05, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8426it [1:42:06, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8427it [1:42:06, 2.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8428it [1:42:07, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8429it [1:42:07, 2.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8430it [1:42:08, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8431it [1:42:08, 2.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8432it [1:42:09, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8433it [1:42:10, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8434it [1:42:10, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8435it [1:42:11, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8436it [1:42:11, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8438it [1:42:12, 2.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8439it [1:42:12, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8440it [1:42:13, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8441it [1:42:13, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8442it [1:42:14, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8443it [1:42:14, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8444it [1:42:15, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8445it [1:42:16, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8446it [1:42:16, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8448it [1:42:17, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8449it [1:42:18, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8450it [1:42:20, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8451it [1:42:20, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8452it [1:42:21, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8454it [1:42:21, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8455it [1:42:22, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8456it [1:42:23, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8457it [1:42:23, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8458it [1:42:24, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8460it [1:42:24, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8461it [1:42:25, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8462it [1:42:26, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8463it [1:42:27, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8464it [1:42:27, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8465it [1:42:28, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8466it [1:42:28, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8467it [1:42:28, 2.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8468it [1:42:29, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8470it [1:42:30, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8471it [1:42:31, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8472it [1:42:31, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8473it [1:42:31, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8474it [1:42:33, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8475it [1:42:33, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8476it [1:42:33, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8477it [1:42:34, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8478it [1:42:35, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8479it [1:42:36, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8480it [1:42:37, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8481it [1:42:37, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8482it [1:42:38, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8483it [1:42:38, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8484it [1:42:40, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8485it [1:42:40, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8486it [1:42:41, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8487it [1:42:41, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8489it [1:42:42, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8490it [1:42:42, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8491it [1:42:43, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8492it [1:42:44, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8493it [1:42:44, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8494it [1:42:46, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8496it [1:42:47, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8497it [1:42:47, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8498it [1:42:48, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8499it [1:42:48, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8500it [1:42:49, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8501it [1:42:50, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8502it [1:42:50, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8503it [1:42:55, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8505it [1:42:55, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8509it [1:42:57, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8511it [1:42:58, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8513it [1:42:58, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8514it [1:43:02, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8515it [1:43:02, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8516it [1:43:03, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8517it [1:43:04, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8519it [1:43:08, 1.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8520it [1:43:08, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8521it [1:43:08, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8522it [1:43:09, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8523it [1:43:13, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8524it [1:43:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8525it [1:43:14, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8526it [1:43:17, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8528it [1:43:18, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8529it [1:43:19, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8530it [1:43:20, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8531it [1:43:21, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8532it [1:43:22, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8533it [1:43:22, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8534it [1:43:23, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8535it [1:43:24, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8536it [1:43:25, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8538it [1:43:26, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8539it [1:43:26, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8540it [1:43:27, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8541it [1:43:28, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8542it [1:43:28, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8543it [1:43:29, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8544it [1:43:29, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8545it [1:43:31, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8546it [1:43:31, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8547it [1:43:32, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8548it [1:43:33, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8549it [1:43:33, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8550it [1:43:34, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8551it [1:43:34, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8552it [1:43:35, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8554it [1:43:36, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8555it [1:43:36, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8556it [1:43:37, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8557it [1:43:38, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8558it [1:43:38, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8559it [1:43:39, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8560it [1:43:39, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8561it [1:43:41, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8562it [1:43:41, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8563it [1:43:42, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8564it [1:43:43, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8566it [1:43:44, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8567it [1:43:46, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8570it [1:43:47, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8571it [1:43:48, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 93999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8572it [1:43:49, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8573it [1:43:50, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8574it [1:43:50, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8576it [1:43:53, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8577it [1:43:54, 1.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8578it [1:43:55, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8579it [1:43:55, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8581it [1:43:56, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8582it [1:43:57, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8583it [1:43:58, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8585it [1:43:58, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8586it [1:43:59, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8587it [1:44:01, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8588it [1:44:02, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8589it [1:44:02, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8590it [1:44:02, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8591it [1:44:02, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8592it [1:44:04, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8593it [1:44:04, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8594it [1:44:04, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8595it [1:44:05, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8596it [1:44:05, 2.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8597it [1:44:05, 2.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8598it [1:44:07, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8599it [1:44:10, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8601it [1:44:10, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8603it [1:44:10, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8604it [1:44:12, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8606it [1:44:13, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8607it [1:44:13, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8609it [1:44:13, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8610it [1:44:15, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8611it [1:44:15, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8612it [1:44:15, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8613it [1:44:16, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8614it [1:44:16, 2.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8615it [1:44:17, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8618it [1:44:18, 2.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8619it [1:44:18, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8620it [1:44:19, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8621it [1:44:20, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8622it [1:44:20, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8624it [1:44:21, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8625it [1:44:23, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8626it [1:44:26, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8628it [1:44:26, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8632it [1:44:29, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8633it [1:44:29, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8634it [1:44:29, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8635it [1:44:30, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8636it [1:44:30, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8637it [1:44:32, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8638it [1:44:32, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8639it [1:44:34, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8641it [1:44:34, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8643it [1:44:35, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8644it [1:44:36, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8646it [1:44:37, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8647it [1:44:37, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8648it [1:44:37, 2.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8649it [1:44:38, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8650it [1:44:39, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8652it [1:44:39, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8653it [1:44:40, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8655it [1:44:41, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8656it [1:44:42, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8657it [1:44:42, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8658it [1:44:42, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8659it [1:44:43, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8660it [1:44:44, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8661it [1:44:46, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8662it [1:44:47, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8663it [1:44:47, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8664it [1:44:47, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8665it [1:44:47, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8666it [1:44:48, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8667it [1:44:50, 1.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8668it [1:44:51, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8669it [1:44:51, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8670it [1:44:52, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8671it [1:44:53, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8672it [1:44:55, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8673it [1:44:55, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8674it [1:44:56, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8675it [1:44:56, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8676it [1:44:57, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8677it [1:44:57, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8678it [1:44:58, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8679it [1:44:59, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8681it [1:44:59, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8682it [1:45:01, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8683it [1:45:01, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8684it [1:45:02, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8687it [1:45:02, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8688it [1:45:03, 2.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8689it [1:45:04, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8690it [1:45:04, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8691it [1:45:05, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8692it [1:45:05, 2.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8693it [1:45:06, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8694it [1:45:06, 2.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8695it [1:45:08, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8697it [1:45:09, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8699it [1:45:11, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8700it [1:45:14, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8701it [1:45:15, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8702it [1:45:15, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8704it [1:45:16, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8705it [1:45:19, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8706it [1:45:21, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8707it [1:45:21, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8708it [1:45:22, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8709it [1:45:22, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8710it [1:45:23, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8711it [1:45:23, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8712it [1:45:25, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8713it [1:45:25, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8714it [1:45:26, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8716it [1:45:26, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8717it [1:45:28, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8718it [1:45:28, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8719it [1:45:28, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8720it [1:45:29, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8721it [1:45:30, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8722it [1:45:31, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8723it [1:45:31, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8724it [1:45:31, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8725it [1:45:32, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8726it [1:45:33, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8727it [1:45:34, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8728it [1:45:34, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8729it [1:45:35, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8731it [1:45:35, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8732it [1:45:36, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8733it [1:45:36, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8734it [1:45:37, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8735it [1:45:37, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8736it [1:45:38, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8737it [1:45:38, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8738it [1:45:39, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8739it [1:45:39, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8741it [1:45:41, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8742it [1:45:41, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8743it [1:45:41, 2.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8744it [1:45:42, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8746it [1:45:43, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8747it [1:45:44, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8748it [1:45:44, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8749it [1:45:45, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8750it [1:45:45, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8751it [1:45:46, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8752it [1:45:47, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8753it [1:45:47, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8754it [1:45:49, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8756it [1:45:49, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8757it [1:45:50, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8758it [1:45:50, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8759it [1:45:51, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8760it [1:45:52, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8762it [1:45:53, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8764it [1:45:54, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8765it [1:45:54, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8766it [1:45:55, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8767it [1:45:55, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8768it [1:45:57, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8770it [1:45:57, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8771it [1:45:58, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8772it [1:45:59, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8774it [1:45:59, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8775it [1:46:00, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8776it [1:46:00, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8777it [1:46:04, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8778it [1:46:04, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8779it [1:46:04, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8780it [1:46:05, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8781it [1:46:05, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8782it [1:46:07, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8783it [1:46:09, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8784it [1:46:09, 1.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8785it [1:46:09, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8786it [1:46:10, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8788it [1:46:11, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8789it [1:46:12, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8790it [1:46:12, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8791it [1:46:13, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8792it [1:46:13, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8793it [1:46:13, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8794it [1:46:14, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8795it [1:46:14, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8796it [1:46:15, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8797it [1:46:16, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8798it [1:46:17, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8799it [1:46:17, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8801it [1:46:18, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8802it [1:46:18, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8803it [1:46:20, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8804it [1:46:20, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8805it [1:46:21, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8807it [1:46:22, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8808it [1:46:22, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8809it [1:46:22, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8810it [1:46:23, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8811it [1:46:24, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8812it [1:46:24, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8814it [1:46:25, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8815it [1:46:25, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8816it [1:46:26, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8818it [1:46:26, 3.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8819it [1:46:26, 3.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8820it [1:46:27, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8821it [1:46:28, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8822it [1:46:28, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8823it [1:46:28, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8824it [1:46:29, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8825it [1:46:29, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8826it [1:46:30, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8827it [1:46:31, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8828it [1:46:31, 2.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8829it [1:46:31, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8830it [1:46:32, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8831it [1:46:32, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8832it [1:46:35, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8833it [1:46:35, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8834it [1:46:36, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8835it [1:46:37, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8836it [1:46:40, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8837it [1:46:40, 1.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8838it [1:46:41, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8839it [1:46:41, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8840it [1:46:42, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8841it [1:46:43, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8842it [1:46:44, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8844it [1:46:44, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8845it [1:46:45, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8847it [1:46:46, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8848it [1:46:47, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8849it [1:46:48, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8850it [1:46:48, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8851it [1:46:49, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8852it [1:46:49, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8853it [1:46:49, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8854it [1:46:49, 2.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8855it [1:46:51, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8856it [1:46:51, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8857it [1:46:52, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8858it [1:46:52, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8859it [1:46:53, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8860it [1:46:54, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8861it [1:46:55, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8863it [1:46:56, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8864it [1:46:56, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8865it [1:46:57, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8867it [1:46:58, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8868it [1:46:58, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8869it [1:47:00, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8870it [1:47:01, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8871it [1:47:01, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8872it [1:47:02, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8874it [1:47:02, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8875it [1:47:04, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8876it [1:47:06, 1.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8877it [1:47:07, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8878it [1:47:07, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8880it [1:47:08, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8881it [1:47:11, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8882it [1:47:11, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8883it [1:47:12, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8884it [1:47:12, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8886it [1:47:13, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8887it [1:47:14, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8888it [1:47:16, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8889it [1:47:18, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8890it [1:47:18, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8894it [1:47:18, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8895it [1:47:21, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8896it [1:47:21, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8898it [1:47:21, 2.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8900it [1:47:23, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8901it [1:47:24, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8902it [1:47:24, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8903it [1:47:24, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8905it [1:47:25, 2.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8906it [1:47:26, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8907it [1:47:27, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8909it [1:47:27, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8911it [1:47:28, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8912it [1:47:29, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8913it [1:47:30, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8914it [1:47:30, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8915it [1:47:31, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8916it [1:47:32, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8917it [1:47:34, 1.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8918it [1:47:34, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8919it [1:47:35, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8920it [1:47:36, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8922it [1:47:37, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8923it [1:47:38, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8924it [1:47:38, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8925it [1:47:39, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8926it [1:47:39, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8927it [1:47:40, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8928it [1:47:41, 1.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8929it [1:47:42, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8930it [1:47:42, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8933it [1:47:43, 2.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8934it [1:47:44, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8935it [1:47:45, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8936it [1:47:45, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8937it [1:47:45, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8938it [1:47:46, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8940it [1:47:47, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8941it [1:47:47, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8942it [1:47:48, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8943it [1:47:49, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8944it [1:47:50, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8945it [1:47:50, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8946it [1:47:52, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8947it [1:47:52, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8950it [1:47:54, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8951it [1:47:55, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8952it [1:47:55, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8953it [1:47:55, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8954it [1:47:56, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8955it [1:47:56, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8956it [1:47:57, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8957it [1:47:59, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8958it [1:47:59, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8960it [1:48:00, 2.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8961it [1:48:01, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8962it [1:48:02, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8963it [1:48:02, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8964it [1:48:03, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8965it [1:48:04, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8966it [1:48:07, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8967it [1:48:07, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8969it [1:48:08, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8970it [1:48:08, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8971it [1:48:08, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8972it [1:48:10, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8973it [1:48:10, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8975it [1:48:11, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8977it [1:48:12, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8978it [1:48:13, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8979it [1:48:14, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8980it [1:48:14, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8981it [1:48:15, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8982it [1:48:16, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8984it [1:48:18, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8986it [1:48:18, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8987it [1:48:19, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8988it [1:48:19, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8989it [1:48:20, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8990it [1:48:21, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8991it [1:48:22, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8992it [1:48:22, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8994it [1:48:22, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8995it [1:48:23, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8996it [1:48:25, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8997it [1:48:26, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8998it [1:48:26, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
8999it [1:48:27, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9000it [1:48:27, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9001it [1:48:28, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9002it [1:48:29, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9003it [1:48:31, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9004it [1:48:31, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9005it [1:48:31, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9006it [1:48:31, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9007it [1:48:33, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9008it [1:48:34, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9011it [1:48:35, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9012it [1:48:35, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9013it [1:48:39, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9014it [1:48:42, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9018it [1:48:43, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9019it [1:48:45, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9020it [1:48:45, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9021it [1:48:45, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9023it [1:48:46, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9024it [1:48:46, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9025it [1:48:48, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9026it [1:48:48, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9027it [1:48:49, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9028it [1:48:49, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9029it [1:48:51, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9030it [1:48:51, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9031it [1:48:52, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9032it [1:48:52, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9033it [1:48:53, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9034it [1:48:53, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9035it [1:48:54, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9036it [1:48:55, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9038it [1:48:55, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9039it [1:48:56, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9040it [1:48:56, 2.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9041it [1:48:57, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9042it [1:48:57, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9043it [1:48:58, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9044it [1:48:58, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9045it [1:48:59, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9046it [1:49:00, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9047it [1:49:00, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9048it [1:49:00, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9049it [1:49:01, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9050it [1:49:02, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9051it [1:49:02, 2.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9052it [1:49:03, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9053it [1:49:03, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9055it [1:49:04, 2.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9056it [1:49:04, 2.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9057it [1:49:04, 2.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9058it [1:49:07, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9061it [1:49:07, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9062it [1:49:09, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9063it [1:49:09, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9064it [1:49:11, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9065it [1:49:11, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9066it [1:49:12, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9067it [1:49:12, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9068it [1:49:13, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9069it [1:49:14, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9070it [1:49:14, 1.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9071it [1:49:14, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9072it [1:49:15, 2.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9073it [1:49:15, 2.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9074it [1:49:17, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9075it [1:49:17, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9077it [1:49:18, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9079it [1:49:18, 2.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9080it [1:49:21, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9081it [1:49:21, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9082it [1:49:22, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9083it [1:49:22, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9084it [1:49:23, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9085it [1:49:23, 1.92it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9086it [1:49:26, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9087it [1:49:28, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9088it [1:49:30, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9089it [1:49:30, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9090it [1:49:31, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9091it [1:49:33, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9092it [1:49:35, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9093it [1:49:36, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9094it [1:49:37, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9096it [1:49:37, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9097it [1:49:38, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9098it [1:49:38, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9099it [1:49:40, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9101it [1:49:40, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9102it [1:49:40, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9103it [1:49:43, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9104it [1:49:43, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9106it [1:49:44, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9107it [1:49:44, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9108it [1:49:45, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9109it [1:49:47, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9110it [1:49:47, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9111it [1:49:47, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9112it [1:49:48, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9113it [1:49:48, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9114it [1:49:49, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9115it [1:49:52, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9116it [1:49:52, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9117it [1:49:53, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9118it [1:49:53, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9119it [1:49:54, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9120it [1:49:55, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9122it [1:49:57, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9124it [1:49:57, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9125it [1:49:58, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9126it [1:49:59, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9127it [1:50:00, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9128it [1:50:01, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9130it [1:50:03, 1.13it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9132it [1:50:03, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9134it [1:50:04, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9135it [1:50:04, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9136it [1:50:05, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9137it [1:50:06, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9138it [1:50:06, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9140it [1:50:06, 2.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9141it [1:50:07, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9142it [1:50:09, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9143it [1:50:09, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9144it [1:50:10, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9145it [1:50:12, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9146it [1:50:13, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9147it [1:50:14, 1.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9148it [1:50:15, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9149it [1:50:16, 1.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9150it [1:50:19, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9151it [1:50:19, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9152it [1:50:21, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9153it [1:50:22, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9154it [1:50:24, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9155it [1:50:26, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9156it [1:50:28, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9157it [1:50:28, 1.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9160it [1:50:30, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9161it [1:50:30, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9162it [1:50:32, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9163it [1:50:33, 1.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9166it [1:50:34, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9167it [1:50:34, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9168it [1:50:35, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9169it [1:50:36, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9170it [1:50:37, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9172it [1:50:37, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9175it [1:50:39, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9176it [1:50:40, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9177it [1:50:40, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9178it [1:50:41, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9180it [1:50:41, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9181it [1:50:43, 1.62it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9182it [1:50:43, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9183it [1:50:44, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9184it [1:50:44, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9186it [1:50:45, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9187it [1:50:49, 1.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9188it [1:50:49, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9189it [1:50:50, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9192it [1:50:52, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9193it [1:50:52, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9195it [1:50:53, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9196it [1:50:53, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9197it [1:50:54, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9198it [1:50:55, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9199it [1:50:57, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9200it [1:50:57, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9202it [1:50:58, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9203it [1:50:59, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9205it [1:50:59, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9206it [1:50:59, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9207it [1:51:01, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9208it [1:51:02, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9209it [1:51:02, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9210it [1:51:02, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9211it [1:51:03, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9212it [1:51:04, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9214it [1:51:05, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9216it [1:51:05, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9217it [1:51:06, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9218it [1:51:07, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9219it [1:51:07, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9220it [1:51:07, 2.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9222it [1:51:08, 2.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9223it [1:51:09, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9224it [1:51:10, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9225it [1:51:12, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9226it [1:51:12, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9227it [1:51:13, 1.24it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9228it [1:51:13, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9229it [1:51:14, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9230it [1:51:16, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9231it [1:51:16, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9232it [1:51:18, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9234it [1:51:18, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9235it [1:51:20, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9236it [1:51:21, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9237it [1:51:22, 1.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9238it [1:51:25, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9239it [1:51:27, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9240it [1:51:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9241it [1:51:28, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9242it [1:51:31, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9243it [1:51:33, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9245it [1:51:34, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9246it [1:51:34, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9248it [1:51:36, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9249it [1:51:36, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9250it [1:51:36, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9251it [1:51:37, 1.37it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9252it [1:51:38, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9254it [1:51:39, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9255it [1:51:40, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9256it [1:51:40, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9257it [1:51:41, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9258it [1:51:41, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9259it [1:51:42, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9261it [1:51:43, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9262it [1:51:43, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9263it [1:51:44, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9264it [1:51:45, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9265it [1:51:45, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9266it [1:51:46, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9267it [1:51:46, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9268it [1:51:47, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9270it [1:51:49, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9271it [1:51:49, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9272it [1:51:50, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9273it [1:51:50, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9274it [1:51:50, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9275it [1:51:52, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9276it [1:51:53, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9278it [1:51:54, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9279it [1:51:56, 1.07it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9280it [1:51:56, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9281it [1:51:57, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9282it [1:51:57, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9283it [1:51:58, 1.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9284it [1:51:58, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9285it [1:51:59, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9286it [1:52:00, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9287it [1:52:03, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9288it [1:52:04, 1.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9289it [1:52:05, 1.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9290it [1:52:05, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9291it [1:52:05, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9292it [1:52:08, 1.27s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9293it [1:52:09, 1.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9294it [1:52:10, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9295it [1:52:10, 1.05it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9296it [1:52:11, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9297it [1:52:11, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9298it [1:52:12, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9299it [1:52:13, 1.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9300it [1:52:14, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9301it [1:52:15, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9303it [1:52:16, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9304it [1:52:22, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9307it [1:52:22, 1.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9309it [1:52:25, 1.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9311it [1:52:25, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9313it [1:52:28, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9314it [1:52:28, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9315it [1:52:29, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9316it [1:52:29, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9318it [1:52:30, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9319it [1:52:31, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9320it [1:52:31, 1.77it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9321it [1:52:32, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9322it [1:52:32, 1.95it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9324it [1:52:33, 2.63it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9325it [1:52:34, 1.67it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9326it [1:52:34, 2.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9327it [1:52:35, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9328it [1:52:36, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9329it [1:52:36, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9330it [1:52:37, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9331it [1:52:37, 2.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9332it [1:52:37, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9333it [1:52:38, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9334it [1:52:38, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9335it [1:52:39, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9336it [1:52:39, 2.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9337it [1:52:40, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9338it [1:52:40, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9340it [1:52:41, 1.85it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9341it [1:52:42, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9342it [1:52:42, 2.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9343it [1:52:43, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9344it [1:52:43, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9345it [1:52:43, 2.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9346it [1:52:44, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9347it [1:52:45, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9348it [1:52:46, 1.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9349it [1:52:46, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9350it [1:52:47, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9351it [1:52:47, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9353it [1:52:48, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9354it [1:52:49, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9355it [1:52:50, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9356it [1:52:50, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9357it [1:52:51, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9358it [1:52:51, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9360it [1:52:53, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9361it [1:52:54, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9362it [1:52:54, 1.72it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9363it [1:52:55, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9364it [1:52:55, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9365it [1:52:56, 1.41it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9366it [1:52:57, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9367it [1:52:58, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9369it [1:52:59, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9370it [1:53:00, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9371it [1:53:01, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9372it [1:53:02, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9373it [1:53:02, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9374it [1:53:02, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9375it [1:53:03, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9376it [1:53:04, 1.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9378it [1:53:05, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9380it [1:53:06, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9381it [1:53:07, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9382it [1:53:08, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9384it [1:53:08, 2.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9385it [1:53:09, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9387it [1:53:10, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9388it [1:53:11, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9389it [1:53:11, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9390it [1:53:12, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9391it [1:53:12, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9392it [1:53:12, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9393it [1:53:13, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9395it [1:53:14, 2.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9396it [1:53:14, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9397it [1:53:15, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9398it [1:53:15, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9399it [1:53:16, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9400it [1:53:16, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9401it [1:53:16, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9402it [1:53:17, 2.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9403it [1:53:17, 2.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9404it [1:53:18, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9405it [1:53:19, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9406it [1:53:20, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9407it [1:53:20, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9409it [1:53:22, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9411it [1:53:22, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9412it [1:53:23, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9413it [1:53:23, 2.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9414it [1:53:23, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9415it [1:53:25, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9416it [1:53:26, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9417it [1:53:26, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9418it [1:53:27, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9419it [1:53:29, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9421it [1:53:29, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9422it [1:53:30, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9423it [1:53:30, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9424it [1:53:31, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9425it [1:53:32, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9426it [1:53:32, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9427it [1:53:33, 1.35it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9428it [1:53:33, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9429it [1:53:34, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9430it [1:53:34, 2.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9431it [1:53:35, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9432it [1:53:35, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9434it [1:53:36, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9435it [1:53:37, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9436it [1:53:38, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9437it [1:53:39, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9438it [1:53:40, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9439it [1:53:40, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9440it [1:53:41, 1.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9441it [1:53:42, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9442it [1:53:45, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9445it [1:53:46, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9446it [1:53:47, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9447it [1:53:50, 1.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9448it [1:53:50, 1.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9449it [1:53:50, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9451it [1:53:51, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9452it [1:53:52, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9453it [1:53:53, 1.15it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9454it [1:53:53, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9455it [1:53:54, 1.53it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9456it [1:53:54, 1.93it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9458it [1:53:55, 2.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9459it [1:53:56, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9461it [1:53:56, 2.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9464it [1:53:57, 2.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9465it [1:54:01, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9466it [1:54:01, 1.14it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9467it [1:54:02, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9469it [1:54:04, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9470it [1:54:04, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9471it [1:54:06, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9473it [1:54:06, 1.59it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9476it [1:54:09, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9479it [1:54:09, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9481it [1:54:12, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9482it [1:54:13, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9483it [1:54:13, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9484it [1:54:13, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9485it [1:54:14, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9486it [1:54:14, 1.90it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9487it [1:54:17, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9488it [1:54:18, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9489it [1:54:18, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9492it [1:54:19, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9493it [1:54:20, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9494it [1:54:21, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9498it [1:54:21, 2.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9499it [1:54:22, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9500it [1:54:24, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9502it [1:54:25, 1.78it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9503it [1:54:25, 1.82it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9504it [1:54:26, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9506it [1:54:27, 1.79it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9507it [1:54:28, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9508it [1:54:29, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9509it [1:54:29, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9510it [1:54:30, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9511it [1:54:30, 2.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9512it [1:54:30, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9513it [1:54:32, 1.25it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9515it [1:54:33, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9516it [1:54:33, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9517it [1:54:35, 1.12it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9518it [1:54:35, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9519it [1:54:36, 1.30it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9520it [1:54:37, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9522it [1:54:37, 2.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9523it [1:54:37, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9524it [1:54:38, 2.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9525it [1:54:39, 1.83it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9526it [1:54:40, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9527it [1:54:40, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9528it [1:54:40, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9529it [1:54:41, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9531it [1:54:42, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9532it [1:54:43, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9533it [1:54:44, 1.38it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9534it [1:54:44, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9535it [1:54:45, 1.65it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9536it [1:54:45, 2.03it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9537it [1:54:46, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9538it [1:54:46, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9539it [1:54:48, 1.40it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9541it [1:54:48, 2.23it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9542it [1:54:48, 2.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9543it [1:54:50, 1.47it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9544it [1:54:51, 1.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9546it [1:54:51, 1.91it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9547it [1:54:52, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9548it [1:54:52, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9549it [1:54:53, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9550it [1:54:56, 1.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9551it [1:54:56, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9552it [1:54:56, 1.32it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9553it [1:54:57, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9556it [1:54:59, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9558it [1:55:00, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9559it [1:55:00, 1.87it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9560it [1:55:01, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9561it [1:55:02, 1.61it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9562it [1:55:02, 1.96it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9563it [1:55:02, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9564it [1:55:03, 2.26it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9565it [1:55:04, 1.69it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9566it [1:55:05, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9567it [1:55:06, 1.04it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9568it [1:55:09, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9571it [1:55:09, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9574it [1:55:11, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9575it [1:55:13, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9577it [1:55:13, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9578it [1:55:16, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9579it [1:55:17, 1.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9580it [1:55:18, 1.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9581it [1:55:18, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9582it [1:55:21, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9583it [1:55:21, 1.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9584it [1:55:22, 1.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9585it [1:55:23, 1.08it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9586it [1:55:24, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9587it [1:55:25, 1.00it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9588it [1:55:25, 1.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9589it [1:55:25, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9590it [1:55:26, 1.89it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9591it [1:55:27, 1.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9593it [1:55:29, 1.19it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9594it [1:55:30, 1.20it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9595it [1:55:30, 1.34it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9597it [1:55:31, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9598it [1:55:31, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9599it [1:55:33, 1.16it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9601it [1:55:33, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9602it [1:55:34, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9603it [1:55:34, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9604it [1:55:36, 1.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9605it [1:55:37, 1.31it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9607it [1:55:37, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9608it [1:55:37, 2.11it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9609it [1:55:38, 1.86it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9610it [1:55:40, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9611it [1:55:41, 1.09it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9615it [1:55:41, 2.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9616it [1:55:43, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9618it [1:55:44, 1.64it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9620it [1:55:45, 1.98it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9621it [1:55:46, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9622it [1:55:47, 1.55it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9623it [1:55:47, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9624it [1:55:48, 1.58it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9625it [1:55:49, 1.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9626it [1:55:49, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9627it [1:55:50, 1.80it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9628it [1:55:50, 2.29it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9629it [1:55:50, 1.94it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9630it [1:55:51, 1.99it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9631it [1:55:52, 1.56it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9632it [1:55:52, 1.97it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9633it [1:55:52, 2.27it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9634it [1:55:53, 2.57it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9635it [1:55:53, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9636it [1:55:54, 2.10it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9637it [1:55:55, 1.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9639it [1:55:55, 2.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9640it [1:55:56, 2.28it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9641it [1:55:56, 1.81it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9642it [1:55:57, 1.74it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9643it [1:55:58, 1.45it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9644it [1:55:59, 1.39it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9645it [1:55:59, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9646it [1:55:59, 2.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9647it [1:56:00, 2.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9648it [1:56:00, 2.36it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9649it [1:56:01, 1.49it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9650it [1:56:02, 1.42it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9652it [1:56:03, 1.73it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9654it [1:56:03, 2.51it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9655it [1:56:05, 1.68it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9656it [1:56:05, 1.70it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9657it [1:56:06, 1.50it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9659it [1:56:07, 1.76it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9660it [1:56:08, 1.46it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9662it [1:56:09, 1.88it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9663it [1:56:10, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9665it [1:56:11, 1.44it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9666it [1:56:11, 1.71it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9667it [1:56:12, 1.84it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 94999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9668it [1:56:12, 2.22it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9669it [1:56:12, 2.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9670it [1:56:13, 2.17it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9671it [1:56:15, 1.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9673it [1:56:16, 1.60it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9674it [1:56:16, 1.75it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9676it [1:56:16, 2.66it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9677it [1:56:20, 1.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9678it [1:56:21, 1.01it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9679it [1:56:21, 1.21it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9681it [1:56:22, 1.52it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9682it [1:56:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9684it [1:56:26, 1.06it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9686it [1:56:26, 1.48it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9687it [1:56:32, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9688it [1:56:33, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9689it [1:56:33, 1.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9691it [1:56:33, 1.33it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9692it [1:56:34, 1.54it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9693it [1:56:36, 1.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9694it [1:56:36, 1.18it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9695it [1:56:38, 1.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9697it [1:56:38, 1.43it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9698it [1:56:40, 1.02it/s]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9699it [1:56:42, 1.10s/it]
9700it [1:56:43, 1.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9701it [1:56:44, 1.25s/it]
9702it [1:56:46, 1.27s/it]
9703it [1:56:47, 1.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9704it [1:56:49, 1.37s/it]
9705it [1:56:50, 1.36s/it]
9706it [1:56:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9707it [1:56:53, 1.36s/it]
9708it [1:56:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9709it [1:56:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9710it [1:56:57, 1.39s/it]
9711it [1:56:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9712it [1:57:00, 1.40s/it]
9713it [1:57:01, 1.38s/it]
9714it [1:57:02, 1.36s/it]
9715it [1:57:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9716it [1:57:05, 1.47s/it]
9717it [1:57:07, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9718it [1:57:08, 1.44s/it]
9719it [1:57:09, 1.40s/it]
9720it [1:57:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9721it [1:57:12, 1.40s/it]
9722it [1:57:14, 1.38s/it]
9723it [1:57:15, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9724it [1:57:16, 1.42s/it]
9725it [1:57:18, 1.38s/it]
9726it [1:57:19, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9727it [1:57:21, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9728it [1:57:23, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9729it [1:57:26, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9730it [1:57:27, 1.87s/it]
9731it [1:57:29, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9732it [1:57:30, 1.63s/it]
9733it [1:57:31, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9734it [1:57:33, 1.51s/it]
9735it [1:57:34, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9736it [1:57:36, 1.45s/it]
9737it [1:57:37, 1.41s/it]
9738it [1:57:38, 1.39s/it]
9739it [1:57:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9740it [1:57:42, 1.69s/it]
9741it [1:57:43, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9742it [1:57:45, 1.54s/it]
9743it [1:57:46, 1.49s/it]
9744it [1:57:47, 1.44s/it]
9745it [1:57:49, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9746it [1:57:50, 1.40s/it]
9747it [1:57:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9748it [1:57:53, 1.38s/it]
9749it [1:57:54, 1.37s/it]
9750it [1:57:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9751it [1:57:57, 1.38s/it]
9752it [1:57:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9753it [1:58:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9754it [1:58:01, 1.39s/it]
9755it [1:58:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9756it [1:58:04, 1.41s/it]
9757it [1:58:05, 1.38s/it]
9758it [1:58:07, 1.37s/it]
9759it [1:58:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9760it [1:58:09, 1.38s/it]
9761it [1:58:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9762it [1:58:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9763it [1:58:14, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9764it [1:58:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9765it [1:58:16, 1.41s/it]
9766it [1:58:18, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9767it [1:58:19, 1.38s/it]
9768it [1:58:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9769it [1:58:22, 1.38s/it]
9770it [1:58:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9771it [1:58:25, 1.38s/it]
9772it [1:58:26, 1.35s/it]
9773it [1:58:27, 1.33s/it]
9774it [1:58:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9775it [1:58:30, 1.35s/it]
9776it [1:58:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9777it [1:58:33, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9778it [1:58:34, 1.43s/it]
9779it [1:58:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9780it [1:58:37, 1.41s/it]
9781it [1:58:38, 1.37s/it]
9782it [1:58:40, 1.35s/it]
9783it [1:58:41, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9784it [1:58:42, 1.37s/it]
9785it [1:58:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9786it [1:58:46, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9787it [1:58:47, 1.59s/it]
9788it [1:58:49, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9789it [1:58:50, 1.50s/it]
9790it [1:58:52, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9791it [1:58:53, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9792it [1:58:55, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9793it [1:59:00, 2.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9794it [1:59:02, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9795it [1:59:05, 2.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9796it [1:59:06, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9797it [1:59:07, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9798it [1:59:09, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9799it [1:59:11, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9800it [1:59:12, 1.66s/it]
9801it [1:59:13, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9802it [1:59:15, 1.52s/it]
9803it [1:59:16, 1.46s/it]
9804it [1:59:17, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9805it [1:59:19, 1.41s/it]
9806it [1:59:20, 1.38s/it]
9807it [1:59:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9808it [1:59:23, 1.38s/it]
9809it [1:59:24, 1.36s/it]
9810it [1:59:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9811it [1:59:27, 1.37s/it]
9812it [1:59:28, 1.35s/it]
9813it [1:59:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9814it [1:59:31, 1.37s/it]
9815it [1:59:32, 1.35s/it]
9816it [1:59:34, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9817it [1:59:35, 1.38s/it]
9818it [1:59:36, 1.37s/it]
9819it [1:59:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9820it [1:59:39, 1.38s/it]
9821it [1:59:40, 1.36s/it]
9822it [1:59:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9823it [1:59:43, 1.36s/it]
9824it [1:59:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9825it [1:59:46, 1.36s/it]
9826it [1:59:47, 1.35s/it]
9827it [1:59:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9828it [1:59:50, 1.36s/it]
9829it [1:59:51, 1.35s/it]
9830it [1:59:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9831it [1:59:54, 1.39s/it]
9832it [1:59:55, 1.37s/it]
9833it [1:59:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9834it [1:59:59, 1.63s/it]
9835it [2:00:00, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9836it [2:00:02, 1.56s/it]
9837it [2:00:03, 1.49s/it]
9838it [2:00:05, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9839it [2:00:06, 1.43s/it]
9840it [2:00:07, 1.38s/it]
9841it [2:00:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9842it [2:00:10, 1.40s/it]
9843it [2:00:11, 1.37s/it]
9844it [2:00:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9845it [2:00:14, 1.38s/it]
9846it [2:00:15, 1.36s/it]
9847it [2:00:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9848it [2:00:18, 1.38s/it]
9849it [2:00:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9850it [2:00:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9851it [2:00:22, 1.40s/it]
9852it [2:00:24, 1.39s/it]
9853it [2:00:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9854it [2:00:26, 1.39s/it]
9855it [2:00:28, 1.36s/it]
9856it [2:00:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9857it [2:00:31, 1.38s/it]
9858it [2:00:32, 1.36s/it]
9859it [2:00:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9860it [2:00:35, 1.37s/it]
9861it [2:00:36, 1.35s/it]
9862it [2:00:37, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9863it [2:00:39, 1.39s/it]
9864it [2:00:40, 1.37s/it]
9865it [2:00:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9866it [2:00:43, 1.38s/it]
9867it [2:00:44, 1.37s/it]
9868it [2:00:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9869it [2:00:47, 1.38s/it]
9870it [2:00:48, 1.37s/it]
9871it [2:00:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9872it [2:00:51, 1.40s/it]
9873it [2:00:52, 1.38s/it]
9874it [2:00:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9875it [2:00:55, 1.40s/it]
9876it [2:00:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9877it [2:00:58, 1.38s/it]
9878it [2:00:59, 1.36s/it]
9879it [2:01:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9880it [2:01:02, 1.40s/it]
9881it [2:01:03, 1.37s/it]
9882it [2:01:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9883it [2:01:06, 1.37s/it]
9884it [2:01:07, 1.35s/it]
9885it [2:01:09, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9886it [2:01:10, 1.36s/it]
9887it [2:01:11, 1.35s/it]
9888it [2:01:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9889it [2:01:14, 1.37s/it]
9890it [2:01:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9891it [2:01:18, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9892it [2:01:37, 6.87s/it]
9893it [2:01:38, 5.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9894it [2:01:40, 4.11s/it]
9895it [2:01:41, 3.27s/it]
9896it [2:01:42, 2.70s/it]
9897it [2:01:44, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9898it [2:01:45, 2.04s/it]
9899it [2:01:47, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9900it [2:01:48, 1.72s/it]
9901it [2:01:49, 1.60s/it]
9902it [2:01:51, 1.52s/it]
9903it [2:01:52, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9904it [2:01:53, 1.43s/it]
9905it [2:01:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9906it [2:01:56, 1.43s/it]
9907it [2:01:57, 1.41s/it]
9908it [2:01:59, 1.38s/it]
9909it [2:02:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9910it [2:02:02, 1.39s/it]
9911it [2:02:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9912it [2:02:04, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9913it [2:02:06, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9914it [2:02:07, 1.47s/it]
9915it [2:02:09, 1.42s/it]
9916it [2:02:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9917it [2:02:11, 1.40s/it]
9918it [2:02:13, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9919it [2:02:14, 1.42s/it]
9920it [2:02:16, 1.39s/it]
9921it [2:02:17, 1.37s/it]
9922it [2:02:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9923it [2:02:20, 1.38s/it]
9924it [2:02:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9925it [2:02:23, 1.42s/it]
9926it [2:02:24, 1.40s/it]
9927it [2:02:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9928it [2:02:27, 1.38s/it]
9929it [2:02:28, 1.37s/it]
9930it [2:02:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9931it [2:02:31, 1.41s/it]
9932it [2:02:32, 1.38s/it]
9933it [2:02:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9934it [2:02:35, 1.41s/it]
9935it [2:02:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9936it [2:02:38, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9937it [2:02:39, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9938it [2:02:41, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9939it [2:02:43, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9940it [2:02:44, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9941it [2:02:46, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9942it [2:02:47, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9943it [2:02:50, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9944it [2:02:51, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9945it [2:02:52, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9946it [2:02:54, 1.52s/it]
9947it [2:02:55, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9948it [2:02:57, 1.48s/it]
9949it [2:02:58, 1.43s/it]
9950it [2:02:59, 1.39s/it]
9951it [2:03:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9952it [2:03:02, 1.40s/it]
9953it [2:03:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9954it [2:03:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9955it [2:03:06, 1.39s/it]
9956it [2:03:07, 1.37s/it]
9957it [2:03:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9958it [2:03:10, 1.38s/it]
9959it [2:03:11, 1.36s/it]
9960it [2:03:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9961it [2:03:14, 1.41s/it]
9962it [2:03:16, 1.38s/it]
9963it [2:03:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9964it [2:03:18, 1.38s/it]
9965it [2:03:20, 1.36s/it]
9966it [2:03:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9967it [2:03:22, 1.37s/it]
9968it [2:03:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9969it [2:03:25, 1.39s/it]
9970it [2:03:27, 1.37s/it]
9971it [2:03:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9972it [2:03:29, 1.37s/it]
9973it [2:03:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9974it [2:03:32, 1.38s/it]
9975it [2:03:33, 1.37s/it]
9976it [2:03:35, 1.35s/it]
9977it [2:03:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9978it [2:03:39, 1.74s/it]
9979it [2:03:40, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9980it [2:03:41, 1.58s/it]
9981it [2:03:43, 1.49s/it]
9982it [2:03:44, 1.44s/it]
9983it [2:03:45, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9984it [2:03:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9985it [2:03:48, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9986it [2:03:50, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9987it [2:03:51, 1.46s/it]
9988it [2:03:53, 1.42s/it]
9989it [2:03:54, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9990it [2:03:55, 1.40s/it]
9991it [2:03:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9992it [2:03:58, 1.37s/it]
9993it [2:03:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9994it [2:04:01, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9995it [2:04:02, 1.38s/it]
9996it [2:04:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
9997it [2:04:05, 1.40s/it]
9998it [2:04:06, 1.37s/it]
9999it [2:04:08, 1.35s/it]
10000it [2:04:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10001it [2:04:10, 1.37s/it]
10002it [2:04:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10003it [2:04:13, 1.36s/it]
10004it [2:04:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10005it [2:04:17, 1.63s/it]
10006it [2:04:18, 1.54s/it]
10007it [2:04:19, 1.47s/it]
10008it [2:04:21, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10009it [2:04:22, 1.43s/it]
10010it [2:04:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10011it [2:04:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10012it [2:04:26, 1.40s/it]
10013it [2:04:27, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10014it [2:04:29, 1.42s/it]
10015it [2:04:30, 1.39s/it]
10016it [2:04:32, 1.38s/it]
10017it [2:04:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10018it [2:04:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10019it [2:04:37, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10020it [2:04:40, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10021it [2:04:42, 2.07s/it]
10022it [2:04:43, 1.84s/it]
10023it [2:04:45, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10024it [2:04:46, 1.64s/it]
10025it [2:04:48, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10026it [2:04:51, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10027it [2:04:52, 1.93s/it]
10028it [2:04:54, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10029it [2:04:55, 1.66s/it]
10030it [2:04:57, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10031it [2:04:58, 1.56s/it]
10032it [2:04:59, 1.49s/it]
10033it [2:05:01, 1.44s/it]
10034it [2:05:02, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10035it [2:05:04, 1.42s/it]
10036it [2:05:05, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10037it [2:05:06, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10038it [2:05:08, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10039it [2:05:09, 1.43s/it]
10040it [2:05:11, 1.40s/it]
10041it [2:05:12, 1.37s/it]
10042it [2:05:13, 1.35s/it]
10043it [2:05:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10044it [2:05:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10045it [2:05:17, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10046it [2:05:19, 1.43s/it]
10047it [2:05:20, 1.39s/it]
10048it [2:05:21, 1.36s/it]
10049it [2:05:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10050it [2:05:24, 1.36s/it]
10051it [2:05:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10052it [2:05:27, 1.37s/it]
10053it [2:05:28, 1.35s/it]
10054it [2:05:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10055it [2:05:31, 1.36s/it]
10056it [2:05:32, 1.34s/it]
10057it [2:05:34, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10058it [2:05:35, 1.37s/it]
10059it [2:05:36, 1.35s/it]
10060it [2:05:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10061it [2:05:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10062it [2:05:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10063it [2:05:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10064it [2:05:43, 1.39s/it]
10065it [2:05:45, 1.37s/it]
10066it [2:05:46, 1.35s/it]
10067it [2:05:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10068it [2:05:49, 1.38s/it]
10069it [2:05:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10070it [2:05:51, 1.40s/it]
10071it [2:05:53, 1.37s/it]
10072it [2:05:54, 1.35s/it]
10073it [2:05:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10074it [2:05:57, 1.36s/it]
10075it [2:05:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10076it [2:05:59, 1.36s/it]
10077it [2:06:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10078it [2:06:02, 1.38s/it]
10079it [2:06:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10080it [2:06:05, 1.38s/it]
10081it [2:06:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10082it [2:06:08, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10083it [2:06:10, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10084it [2:06:11, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10085it [2:06:13, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10086it [2:06:14, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10087it [2:06:15, 1.47s/it]
10088it [2:06:17, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10089it [2:06:18, 1.43s/it]
10090it [2:06:19, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10091it [2:06:21, 1.41s/it]
10092it [2:06:22, 1.38s/it]
10093it [2:06:24, 1.36s/it]
10094it [2:06:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10095it [2:06:26, 1.38s/it]
10096it [2:06:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10097it [2:06:30, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10098it [2:06:31, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10099it [2:06:33, 1.53s/it]
10100it [2:06:34, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10101it [2:06:36, 1.46s/it]
10102it [2:06:37, 1.41s/it]
10103it [2:06:38, 1.38s/it]
10104it [2:06:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10105it [2:06:41, 1.38s/it]
10106it [2:06:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10107it [2:06:44, 1.39s/it]
10108it [2:06:45, 1.36s/it]
10109it [2:06:46, 1.35s/it]
10110it [2:06:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10111it [2:06:49, 1.35s/it]
10112it [2:06:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10113it [2:06:52, 1.35s/it]
10114it [2:06:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10115it [2:06:54, 1.39s/it]
10116it [2:06:56, 1.37s/it]
10117it [2:06:57, 1.35s/it]
10118it [2:06:58, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10119it [2:07:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10120it [2:07:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10121it [2:07:04, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10122it [2:07:06, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10123it [2:07:07, 1.69s/it]
10124it [2:07:09, 1.59s/it]
10125it [2:07:10, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10126it [2:07:11, 1.49s/it]
10127it [2:07:13, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10128it [2:07:15, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10129it [2:07:16, 1.53s/it]
10130it [2:07:17, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10131it [2:07:19, 1.49s/it]
10132it [2:07:20, 1.44s/it]
10133it [2:07:22, 1.40s/it]
10134it [2:07:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10135it [2:07:24, 1.41s/it]
10136it [2:07:26, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10137it [2:07:27, 1.40s/it]
10138it [2:07:28, 1.37s/it]
10139it [2:07:30, 1.34s/it]
10140it [2:07:31, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10141it [2:07:32, 1.37s/it]
10142it [2:07:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10143it [2:07:35, 1.38s/it]
10144it [2:07:37, 1.36s/it]
10145it [2:07:38, 1.34s/it]
10146it [2:07:39, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10147it [2:07:41, 1.35s/it]
10148it [2:07:42, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10149it [2:07:43, 1.37s/it]
10150it [2:07:45, 1.35s/it]
10151it [2:07:46, 1.34s/it]
10152it [2:07:47, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10153it [2:07:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10154it [2:07:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10155it [2:07:52, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10156it [2:07:53, 1.43s/it]
10157it [2:07:54, 1.39s/it]
10158it [2:07:56, 1.37s/it]
10159it [2:07:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10160it [2:07:58, 1.37s/it]
10161it [2:08:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10162it [2:08:01, 1.40s/it]
10163it [2:08:03, 1.38s/it]
10164it [2:08:04, 1.37s/it]
10165it [2:08:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10166it [2:08:07, 1.38s/it]
10167it [2:08:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10168it [2:08:09, 1.37s/it]
10169it [2:08:11, 1.36s/it]
10170it [2:08:12, 1.36s/it]
10171it [2:08:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10172it [2:08:15, 1.37s/it]
10173it [2:08:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10174it [2:08:19, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10175it [2:08:20, 1.67s/it]
10176it [2:08:22, 1.56s/it]
10177it [2:08:23, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10178it [2:08:24, 1.47s/it]
10179it [2:08:26, 1.42s/it]
10180it [2:08:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10181it [2:08:28, 1.42s/it]
10182it [2:08:30, 1.40s/it]
10183it [2:08:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10184it [2:08:33, 1.39s/it]
10185it [2:08:34, 1.36s/it]
10186it [2:08:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10187it [2:08:37, 1.36s/it]
10188it [2:08:38, 1.34s/it]
10189it [2:08:39, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10190it [2:08:41, 1.36s/it]
10191it [2:08:42, 1.35s/it]
10192it [2:08:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10193it [2:08:45, 1.36s/it]
10194it [2:08:46, 1.35s/it]
10195it [2:08:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10196it [2:08:49, 1.38s/it]
10197it [2:08:50, 1.36s/it]
10198it [2:08:51, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10199it [2:08:53, 1.37s/it]
10200it [2:08:54, 1.36s/it]
10201it [2:08:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10202it [2:08:57, 1.37s/it]
10203it [2:08:58, 1.35s/it]
10204it [2:08:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10205it [2:09:01, 1.35s/it]
10206it [2:09:02, 1.33s/it]
10207it [2:09:03, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10208it [2:09:05, 1.35s/it]
10209it [2:09:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10210it [2:09:08, 1.37s/it]
10211it [2:09:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10212it [2:09:10, 1.37s/it]
10213it [2:09:12, 1.35s/it]
10214it [2:09:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10215it [2:09:14, 1.37s/it]
10216it [2:09:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10217it [2:09:17, 1.47s/it]
10218it [2:09:19, 1.42s/it]
10219it [2:09:20, 1.37s/it]
10220it [2:09:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10221it [2:09:23, 1.36s/it]
10222it [2:09:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10223it [2:09:25, 1.38s/it]
10224it [2:09:27, 1.36s/it]
10225it [2:09:28, 1.34s/it]
10226it [2:09:29, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10227it [2:09:31, 1.35s/it]
10228it [2:09:32, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10229it [2:09:34, 1.37s/it]
10230it [2:09:35, 1.35s/it]
10231it [2:09:36, 1.33s/it]
10232it [2:09:37, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10233it [2:09:39, 1.35s/it]
10234it [2:09:40, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10235it [2:09:42, 1.38s/it]
10236it [2:09:43, 1.35s/it]
10237it [2:09:44, 1.34s/it]
10238it [2:09:45, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10239it [2:09:47, 1.37s/it]
10240it [2:09:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10241it [2:09:51, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10242it [2:09:52, 1.58s/it]
10243it [2:09:53, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10244it [2:09:55, 1.48s/it]
10245it [2:09:56, 1.44s/it]
10246it [2:09:57, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10247it [2:09:59, 1.40s/it]
10248it [2:10:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10249it [2:10:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10250it [2:10:03, 1.39s/it]
10251it [2:10:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10252it [2:10:06, 1.40s/it]
10253it [2:10:07, 1.37s/it]
10254it [2:10:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10255it [2:10:10, 1.39s/it]
10256it [2:10:11, 1.36s/it]
10257it [2:10:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10258it [2:10:14, 1.39s/it]
10259it [2:10:15, 1.39s/it]
10260it [2:10:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10261it [2:10:18, 1.38s/it]
10262it [2:10:19, 1.35s/it]
10263it [2:10:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10264it [2:10:22, 1.39s/it]
10265it [2:10:23, 1.38s/it]
10266it [2:10:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10267it [2:10:26, 1.38s/it]
10268it [2:10:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10269it [2:10:29, 1.47s/it]
10270it [2:10:31, 1.43s/it]
10271it [2:10:32, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10272it [2:10:33, 1.41s/it]
10273it [2:10:35, 1.38s/it]
10274it [2:10:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10275it [2:10:37, 1.38s/it]
10276it [2:10:39, 1.36s/it]
10277it [2:10:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10278it [2:10:41, 1.36s/it]
10279it [2:10:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10280it [2:10:44, 1.37s/it]
10281it [2:10:45, 1.36s/it]
10282it [2:10:47, 1.35s/it]
10283it [2:10:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10284it [2:10:50, 1.37s/it]
10285it [2:10:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10286it [2:10:52, 1.36s/it]
10287it [2:10:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10288it [2:10:55, 1.39s/it]
10289it [2:10:56, 1.37s/it]
10290it [2:10:58, 1.35s/it]
10291it [2:10:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10292it [2:11:00, 1.38s/it]
10293it [2:11:02, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10294it [2:11:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10295it [2:11:05, 1.39s/it]
10296it [2:11:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10297it [2:11:07, 1.39s/it]
10298it [2:11:09, 1.36s/it]
10299it [2:11:10, 1.34s/it]
10300it [2:11:11, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10301it [2:11:13, 1.36s/it]
10302it [2:11:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10303it [2:11:16, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10304it [2:11:17, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10305it [2:11:18, 1.42s/it]
10306it [2:11:20, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10307it [2:11:21, 1.44s/it]
10308it [2:11:23, 1.40s/it]
10309it [2:11:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10310it [2:11:25, 1.40s/it]
10311it [2:11:27, 1.37s/it]
10312it [2:11:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10313it [2:11:29, 1.39s/it]
10314it [2:11:31, 1.37s/it]
10315it [2:11:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10316it [2:11:34, 1.38s/it]
10317it [2:11:35, 1.37s/it]
10318it [2:11:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10319it [2:11:38, 1.40s/it]
10320it [2:11:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10321it [2:11:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10322it [2:11:42, 1.39s/it]
10323it [2:11:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10324it [2:11:45, 1.38s/it]
10325it [2:11:46, 1.36s/it]
10326it [2:11:47, 1.34s/it]
10327it [2:11:48, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10328it [2:11:50, 1.36s/it]
10329it [2:11:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10330it [2:11:53, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10331it [2:11:55, 1.54s/it]
10332it [2:11:56, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10333it [2:11:58, 1.48s/it]
10334it [2:11:59, 1.44s/it]
10335it [2:12:00, 1.39s/it]
10336it [2:12:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10337it [2:12:03, 1.37s/it]
10338it [2:12:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10339it [2:12:06, 1.38s/it]
10340it [2:12:07, 1.36s/it]
10341it [2:12:08, 1.35s/it]
10342it [2:12:10, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10343it [2:12:11, 1.35s/it]
10344it [2:12:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10345it [2:12:14, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10346it [2:12:15, 1.43s/it]
10347it [2:12:17, 1.39s/it]
10348it [2:12:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10349it [2:12:19, 1.38s/it]
10350it [2:12:21, 1.36s/it]
10351it [2:12:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10352it [2:12:23, 1.38s/it]
10353it [2:12:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10354it [2:12:26, 1.39s/it]
10355it [2:12:28, 1.36s/it]
10356it [2:12:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10357it [2:12:30, 1.38s/it]
10358it [2:12:32, 1.36s/it]
10359it [2:12:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10360it [2:12:34, 1.40s/it]
10361it [2:12:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10362it [2:12:39, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10363it [2:12:40, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10364it [2:12:42, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10365it [2:12:43, 1.61s/it]
10366it [2:12:45, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10367it [2:12:46, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10368it [2:12:47, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10369it [2:12:49, 1.46s/it]
10370it [2:12:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10371it [2:12:52, 1.42s/it]
10372it [2:12:53, 1.39s/it]
10373it [2:12:54, 1.36s/it]
10374it [2:12:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10375it [2:12:57, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10376it [2:12:59, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10377it [2:13:01, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10378it [2:13:03, 1.65s/it]
10379it [2:13:04, 1.55s/it]
10380it [2:13:05, 1.48s/it]
10381it [2:13:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10382it [2:13:08, 1.44s/it]
10383it [2:13:09, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10384it [2:13:11, 1.41s/it]
10385it [2:13:12, 1.38s/it]
10386it [2:13:13, 1.36s/it]
10387it [2:13:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10388it [2:13:16, 1.38s/it]
10389it [2:13:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10390it [2:13:19, 1.38s/it]
10391it [2:13:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10392it [2:13:22, 1.39s/it]
10393it [2:13:23, 1.36s/it]
10394it [2:13:24, 1.35s/it]
10395it [2:13:25, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10396it [2:13:27, 1.35s/it]
10397it [2:13:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10398it [2:13:30, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10399it [2:13:32, 1.55s/it]
10400it [2:13:33, 1.49s/it]
10401it [2:13:34, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10402it [2:13:36, 1.47s/it]
10403it [2:13:37, 1.42s/it]
10404it [2:13:39, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10405it [2:13:40, 1.43s/it]
10406it [2:13:41, 1.38s/it]
10407it [2:13:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10408it [2:13:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10409it [2:13:46, 1.40s/it]
10410it [2:13:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10411it [2:13:49, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10412it [2:13:50, 1.48s/it]
10413it [2:13:51, 1.44s/it]
10414it [2:13:53, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10415it [2:13:54, 1.42s/it]
10416it [2:13:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10417it [2:13:57, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10418it [2:13:58, 1.41s/it]
10419it [2:14:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10420it [2:14:01, 1.39s/it]
10421it [2:14:02, 1.37s/it]
10422it [2:14:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10423it [2:14:05, 1.40s/it]
10424it [2:14:07, 1.38s/it]
10425it [2:14:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10426it [2:14:09, 1.37s/it]
10427it [2:14:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10428it [2:14:12, 1.38s/it]
10429it [2:14:13, 1.37s/it]
10430it [2:14:15, 1.35s/it]
10431it [2:14:16, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10432it [2:14:17, 1.35s/it]
10433it [2:14:19, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10434it [2:14:20, 1.43s/it]
10435it [2:14:22, 1.39s/it]
10436it [2:14:23, 1.36s/it]
10437it [2:14:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10438it [2:14:26, 1.36s/it]
10439it [2:14:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10440it [2:14:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10441it [2:14:30, 1.36s/it]
10442it [2:14:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10443it [2:14:32, 1.38s/it]
10444it [2:14:34, 1.36s/it]
10445it [2:14:35, 1.35s/it]
10446it [2:14:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10447it [2:14:38, 1.34s/it]
10448it [2:14:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10449it [2:14:40, 1.36s/it]
10450it [2:14:42, 1.35s/it]
10451it [2:14:43, 1.34s/it]
10452it [2:14:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10453it [2:14:46, 1.36s/it]
10454it [2:14:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10455it [2:14:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10456it [2:14:50, 1.40s/it]
10457it [2:14:51, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10458it [2:14:54, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10459it [2:14:58, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10460it [2:14:59, 2.06s/it]
10461it [2:15:00, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10462it [2:15:02, 1.72s/it]
10463it [2:15:03, 1.60s/it]
10464it [2:15:05, 1.51s/it]
10465it [2:15:06, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10466it [2:15:07, 1.47s/it]
10467it [2:15:09, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10468it [2:15:10, 1.42s/it]
10469it [2:15:11, 1.39s/it]
10470it [2:15:13, 1.36s/it]
10471it [2:15:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10472it [2:15:15, 1.36s/it]
10473it [2:15:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10474it [2:15:18, 1.36s/it]
10475it [2:15:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10476it [2:15:21, 1.39s/it]
10477it [2:15:22, 1.37s/it]
10478it [2:15:23, 1.35s/it]
10479it [2:15:25, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10480it [2:15:26, 1.37s/it]
10481it [2:15:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10482it [2:15:29, 1.38s/it]
10483it [2:15:30, 1.36s/it]
10484it [2:15:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10485it [2:15:33, 1.38s/it]
10486it [2:15:34, 1.37s/it]
10487it [2:15:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10488it [2:15:37, 1.38s/it]
10489it [2:15:38, 1.36s/it]
10490it [2:15:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10491it [2:15:41, 1.36s/it]
10492it [2:15:42, 1.34s/it]
10493it [2:15:44, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10494it [2:15:45, 1.36s/it]
10495it [2:15:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10496it [2:15:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10497it [2:15:49, 1.37s/it]
10498it [2:15:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10499it [2:15:52, 1.37s/it]
10500it [2:15:53, 1.35s/it]
10501it [2:15:55, 1.33s/it]
10502it [2:15:56, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10503it [2:15:57, 1.35s/it]
10504it [2:15:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10505it [2:16:00, 1.37s/it]
10506it [2:16:01, 1.35s/it]
10507it [2:16:03, 1.34s/it]
10508it [2:16:04, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10509it [2:16:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10510it [2:16:08, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10511it [2:16:10, 1.74s/it]
10512it [2:16:11, 1.61s/it]
10513it [2:16:13, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10514it [2:16:14, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10515it [2:16:16, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10516it [2:16:17, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10517it [2:16:19, 1.47s/it]
10518it [2:16:20, 1.42s/it]
10519it [2:16:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10520it [2:16:23, 1.41s/it]
10521it [2:16:24, 1.38s/it]
10522it [2:16:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10523it [2:16:27, 1.39s/it]
10524it [2:16:28, 1.36s/it]
10525it [2:16:29, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10526it [2:16:31, 1.39s/it]
10527it [2:16:32, 1.37s/it]
10528it [2:16:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10529it [2:16:35, 1.37s/it]
10530it [2:16:36, 1.36s/it]
10531it [2:16:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10532it [2:16:39, 1.38s/it]
10533it [2:16:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10534it [2:16:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10535it [2:16:43, 1.38s/it]
10536it [2:16:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10537it [2:16:46, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10538it [2:16:48, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10539it [2:16:50, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10540it [2:16:58, 3.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10541it [2:17:01, 3.46s/it]
10542it [2:17:02, 2.81s/it]
10543it [2:17:04, 2.36s/it]
10544it [2:17:05, 2.04s/it]
10545it [2:17:06, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10546it [2:17:08, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10547it [2:17:10, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10548it [2:17:25, 5.75s/it]
10549it [2:17:26, 4.43s/it]
10550it [2:17:27, 3.50s/it]
10551it [2:17:29, 2.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10552it [2:17:30, 2.41s/it]
10553it [2:17:31, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10554it [2:17:34, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10555it [2:17:35, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10556it [2:17:37, 1.89s/it]
10557it [2:17:38, 1.71s/it]
10558it [2:17:40, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10559it [2:17:41, 1.55s/it]
10560it [2:17:42, 1.48s/it]
10561it [2:17:44, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10562it [2:17:49, 2.70s/it]
10563it [2:17:51, 2.29s/it]
10564it [2:17:52, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10565it [2:17:54, 1.85s/it]
10566it [2:17:55, 1.69s/it]
10567it [2:17:56, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10568it [2:17:58, 1.54s/it]
10569it [2:17:59, 1.47s/it]
10570it [2:18:00, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10571it [2:18:02, 1.42s/it]
10572it [2:18:03, 1.39s/it]
10573it [2:18:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10574it [2:18:06, 1.38s/it]
10575it [2:18:07, 1.36s/it]
10576it [2:18:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10577it [2:18:10, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10578it [2:18:11, 1.41s/it]
10579it [2:18:13, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10580it [2:18:14, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10581it [2:18:16, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10582it [2:18:19, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10583it [2:18:20, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10584it [2:18:22, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10585it [2:18:24, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10586it [2:18:26, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10587it [2:18:27, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10588it [2:18:28, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10589it [2:18:30, 1.59s/it]
10590it [2:18:31, 1.52s/it]
10591it [2:18:33, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10592it [2:18:34, 1.47s/it]
10593it [2:18:35, 1.42s/it]
10594it [2:18:37, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10595it [2:18:38, 1.41s/it]
10596it [2:18:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10597it [2:18:41, 1.40s/it]
10598it [2:18:42, 1.38s/it]
10599it [2:18:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10600it [2:18:45, 1.38s/it]
10601it [2:18:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10602it [2:18:48, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10603it [2:18:50, 1.50s/it]
10604it [2:18:51, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10605it [2:18:55, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10606it [2:18:57, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10607it [2:18:59, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10608it [2:19:01, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10609it [2:19:03, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10610it [2:19:04, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10611it [2:19:07, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10612it [2:19:08, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10613it [2:19:11, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10614it [2:19:14, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10615it [2:19:16, 2.22s/it]
10616it [2:19:17, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10617it [2:19:18, 1.79s/it]
10618it [2:19:20, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10619it [2:19:21, 1.61s/it]
10620it [2:19:23, 1.52s/it]
10621it [2:19:24, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10622it [2:19:25, 1.45s/it]
10623it [2:19:27, 1.41s/it]
10624it [2:19:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10625it [2:19:29, 1.40s/it]
10626it [2:19:31, 1.37s/it]
10627it [2:19:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10628it [2:19:33, 1.38s/it]
10629it [2:19:35, 1.36s/it]
10630it [2:19:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10631it [2:19:37, 1.36s/it]
10632it [2:19:39, 1.34s/it]
10633it [2:19:40, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10634it [2:19:41, 1.37s/it]
10635it [2:19:43, 1.35s/it]
10636it [2:19:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10637it [2:19:46, 1.37s/it]
10638it [2:19:47, 1.35s/it]
10639it [2:19:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10640it [2:19:50, 1.37s/it]
10641it [2:19:51, 1.35s/it]
10642it [2:19:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10643it [2:19:54, 1.36s/it]
10644it [2:19:55, 1.35s/it]
10645it [2:19:56, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10646it [2:19:58, 1.48s/it]
10647it [2:19:59, 1.43s/it]
10648it [2:20:01, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10649it [2:20:02, 1.43s/it]
10650it [2:20:04, 1.39s/it]
10651it [2:20:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10652it [2:20:06, 1.39s/it]
10653it [2:20:08, 1.37s/it]
10654it [2:20:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10655it [2:20:10, 1.36s/it]
10656it [2:20:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10657it [2:20:13, 1.39s/it]
10658it [2:20:14, 1.37s/it]
10659it [2:20:16, 1.37s/it]
10660it [2:20:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10661it [2:20:19, 1.39s/it]
10662it [2:20:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10663it [2:20:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10664it [2:20:23, 1.38s/it]
10665it [2:20:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10666it [2:20:25, 1.39s/it]
10667it [2:20:27, 1.36s/it]
10668it [2:20:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10669it [2:20:30, 1.41s/it]
10670it [2:20:31, 1.39s/it]
10671it [2:20:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10672it [2:20:34, 1.41s/it]
10673it [2:20:35, 1.38s/it]
10674it [2:20:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10675it [2:20:38, 1.45s/it]
10676it [2:20:39, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10677it [2:20:41, 1.46s/it]
10678it [2:20:42, 1.41s/it]
10679it [2:20:44, 1.38s/it]
10680it [2:20:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10681it [2:20:46, 1.38s/it]
10682it [2:20:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10683it [2:20:49, 1.40s/it]
10684it [2:20:50, 1.38s/it]
10685it [2:20:52, 1.35s/it]
10686it [2:20:53, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10687it [2:20:55, 1.43s/it]
10688it [2:20:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10689it [2:20:59, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10690it [2:21:01, 1.85s/it]
10691it [2:21:02, 1.69s/it]
10692it [2:21:04, 1.57s/it]
10693it [2:21:05, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10694it [2:21:06, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10695it [2:21:10, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10696it [2:21:11, 1.92s/it]
10697it [2:21:13, 1.74s/it]
10698it [2:21:14, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10699it [2:21:15, 1.58s/it]
10700it [2:21:17, 1.50s/it]
10701it [2:21:18, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10702it [2:21:20, 1.46s/it]
10703it [2:21:21, 1.42s/it]
10704it [2:21:22, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10705it [2:21:24, 1.42s/it]
10706it [2:21:25, 1.39s/it]
10707it [2:21:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10708it [2:21:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10709it [2:21:29, 1.38s/it]
10710it [2:21:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10711it [2:21:32, 1.41s/it]
10712it [2:21:33, 1.38s/it]
10713it [2:21:35, 1.35s/it]
10714it [2:21:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10715it [2:21:37, 1.37s/it]
10716it [2:21:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10717it [2:21:40, 1.38s/it]
10718it [2:21:41, 1.36s/it]
10719it [2:21:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10720it [2:21:45, 1.49s/it]
10721it [2:21:46, 1.44s/it]
10722it [2:21:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10723it [2:21:49, 1.40s/it]
10724it [2:21:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10725it [2:21:51, 1.40s/it]
10726it [2:21:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10727it [2:21:54, 1.38s/it]
10728it [2:21:55, 1.36s/it]
10729it [2:21:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10730it [2:21:58, 1.37s/it]
10731it [2:21:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10732it [2:22:01, 1.39s/it]
10733it [2:22:02, 1.37s/it]
10734it [2:22:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10735it [2:22:05, 1.37s/it]
10736it [2:22:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10737it [2:22:08, 1.40s/it]
10738it [2:22:09, 1.37s/it]
10739it [2:22:10, 1.36s/it]
10740it [2:22:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10741it [2:22:13, 1.36s/it]
10742it [2:22:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10743it [2:22:16, 1.38s/it]
10744it [2:22:17, 1.36s/it]
10745it [2:22:18, 1.35s/it]
10746it [2:22:20, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10747it [2:22:21, 1.37s/it]
10748it [2:22:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10749it [2:22:24, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10750it [2:22:26, 1.43s/it]
10751it [2:22:27, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10752it [2:22:28, 1.45s/it]
10753it [2:22:30, 1.40s/it]
10754it [2:22:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10755it [2:22:32, 1.38s/it]
10756it [2:22:34, 1.36s/it]
10757it [2:22:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10758it [2:22:37, 1.37s/it]
10759it [2:22:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10760it [2:22:39, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10761it [2:22:41, 1.42s/it]
10762it [2:22:42, 1.40s/it]
10763it [2:22:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10764it [2:22:45, 1.39s/it]
10765it [2:22:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10766it [2:22:48, 1.41s/it]
10767it [2:22:49, 1.39s/it]
10768it [2:22:50, 1.38s/it]
10769it [2:22:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 95999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10770it [2:22:53, 1.38s/it]
10771it [2:22:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10772it [2:22:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10773it [2:22:57, 1.39s/it]
10774it [2:22:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10775it [2:23:00, 1.38s/it]
10776it [2:23:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10777it [2:23:03, 1.39s/it]
10778it [2:23:04, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10779it [2:23:06, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10780it [2:23:07, 1.42s/it]
10781it [2:23:08, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10782it [2:23:10, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10783it [2:23:11, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10784it [2:23:13, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10785it [2:23:14, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10786it [2:23:15, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10787it [2:23:17, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10788it [2:23:18, 1.46s/it]
10789it [2:23:20, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10790it [2:23:21, 1.43s/it]
10791it [2:23:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10792it [2:23:24, 1.40s/it]
10793it [2:23:25, 1.37s/it]
10794it [2:23:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10795it [2:23:28, 1.37s/it]
10796it [2:23:29, 1.35s/it]
10797it [2:23:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10798it [2:23:32, 1.37s/it]
10799it [2:23:33, 1.35s/it]
10800it [2:23:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10801it [2:23:36, 1.38s/it]
10802it [2:23:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10803it [2:23:39, 1.39s/it]
10804it [2:23:40, 1.37s/it]
10805it [2:23:42, 1.36s/it]
10806it [2:23:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10807it [2:23:44, 1.36s/it]
10808it [2:23:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10809it [2:23:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10810it [2:23:48, 1.38s/it]
10811it [2:23:50, 1.36s/it]
10812it [2:23:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10813it [2:23:52, 1.36s/it]
10814it [2:23:54, 1.36s/it]
10815it [2:23:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10816it [2:23:56, 1.37s/it]
10817it [2:23:58, 1.36s/it]
10818it [2:23:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10819it [2:24:01, 1.38s/it]
10820it [2:24:02, 1.36s/it]
10821it [2:24:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10822it [2:24:05, 1.38s/it]
10823it [2:24:06, 1.36s/it]
10824it [2:24:07, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10825it [2:24:09, 1.37s/it]
10826it [2:24:10, 1.35s/it]
10827it [2:24:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10828it [2:24:13, 1.36s/it]
10829it [2:24:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10830it [2:24:16, 1.38s/it]
10831it [2:24:17, 1.35s/it]
10832it [2:24:18, 1.34s/it]
10833it [2:24:19, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10834it [2:24:21, 1.38s/it]
10835it [2:24:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10836it [2:24:24, 1.39s/it]
10837it [2:24:25, 1.36s/it]
10838it [2:24:26, 1.35s/it]
10839it [2:24:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10840it [2:24:29, 1.36s/it]
10841it [2:24:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10842it [2:24:32, 1.40s/it]
10843it [2:24:33, 1.38s/it]
10844it [2:24:35, 1.37s/it]
10845it [2:24:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10846it [2:24:39, 1.76s/it]
10847it [2:24:40, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10848it [2:24:44, 2.35s/it]
10849it [2:24:45, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10850it [2:24:47, 1.88s/it]
10851it [2:24:48, 1.71s/it]
10852it [2:24:49, 1.59s/it]
10853it [2:24:51, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10854it [2:24:52, 1.49s/it]
10855it [2:24:53, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10856it [2:24:58, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10857it [2:25:06, 4.19s/it]
10858it [2:25:08, 3.32s/it]
10859it [2:25:09, 2.72s/it]
10860it [2:25:10, 2.29s/it]
10861it [2:25:12, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10862it [2:25:13, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10863it [2:25:17, 2.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10864it [2:25:18, 2.16s/it]
10865it [2:25:20, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10866it [2:25:21, 1.78s/it]
10867it [2:25:23, 1.64s/it]
10868it [2:25:24, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10869it [2:25:25, 1.50s/it]
10870it [2:25:27, 1.45s/it]
10871it [2:25:28, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10872it [2:25:29, 1.41s/it]
10873it [2:25:31, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10874it [2:25:32, 1.45s/it]
10875it [2:25:34, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10876it [2:25:35, 1.44s/it]
10877it [2:25:36, 1.41s/it]
10878it [2:25:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10879it [2:25:39, 1.41s/it]
10880it [2:25:40, 1.38s/it]
10881it [2:25:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10882it [2:25:43, 1.40s/it]
10883it [2:25:45, 1.38s/it]
10884it [2:25:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10885it [2:25:47, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10886it [2:25:49, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10887it [2:25:51, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10888it [2:25:52, 1.54s/it]
10889it [2:25:54, 1.47s/it]
10890it [2:25:55, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10891it [2:25:56, 1.42s/it]
10892it [2:25:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10893it [2:25:59, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10894it [2:26:00, 1.40s/it]
10895it [2:26:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10896it [2:26:03, 1.39s/it]
10897it [2:26:04, 1.38s/it]
10898it [2:26:06, 1.36s/it]
10899it [2:26:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10900it [2:26:09, 1.38s/it]
10901it [2:26:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10902it [2:26:11, 1.38s/it]
10903it [2:26:13, 1.36s/it]
10904it [2:26:14, 1.35s/it]
10905it [2:26:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10906it [2:26:17, 1.37s/it]
10907it [2:26:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10908it [2:26:20, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10909it [2:26:22, 1.53s/it]
10910it [2:26:23, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10911it [2:26:24, 1.46s/it]
10912it [2:26:26, 1.42s/it]
10913it [2:26:27, 1.39s/it]
10914it [2:26:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10915it [2:26:30, 1.40s/it]
10916it [2:26:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10917it [2:26:32, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10918it [2:26:34, 1.38s/it]
10919it [2:26:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10920it [2:26:37, 1.40s/it]
10921it [2:26:38, 1.38s/it]
10922it [2:26:39, 1.36s/it]
10923it [2:26:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10924it [2:26:42, 1.36s/it]
10925it [2:26:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10926it [2:26:49, 2.65s/it]
10927it [2:26:50, 2.24s/it]
10928it [2:26:52, 1.96s/it]
10929it [2:26:53, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10930it [2:26:54, 1.64s/it]
10931it [2:26:56, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10932it [2:26:57, 1.51s/it]
10933it [2:26:58, 1.45s/it]
10934it [2:27:00, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10935it [2:27:01, 1.42s/it]
10936it [2:27:02, 1.38s/it]
10937it [2:27:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10938it [2:27:05, 1.39s/it]
10939it [2:27:06, 1.37s/it]
10940it [2:27:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10941it [2:27:09, 1.39s/it]
10942it [2:27:11, 1.38s/it]
10943it [2:27:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10944it [2:27:13, 1.38s/it]
10945it [2:27:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10946it [2:27:17, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10947it [2:27:19, 1.62s/it]
10948it [2:27:20, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10949it [2:27:21, 1.51s/it]
10950it [2:27:23, 1.45s/it]
10951it [2:27:24, 1.40s/it]
10952it [2:27:25, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10953it [2:27:27, 1.37s/it]
10954it [2:27:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10955it [2:27:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10956it [2:27:31, 1.37s/it]
10957it [2:27:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10958it [2:27:33, 1.36s/it]
10959it [2:27:35, 1.34s/it]
10960it [2:27:36, 1.33s/it]
10961it [2:27:37, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10962it [2:27:39, 1.35s/it]
10963it [2:27:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10964it [2:27:42, 1.58s/it]
10965it [2:27:43, 1.51s/it]
10966it [2:27:45, 1.45s/it]
10967it [2:27:46, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10968it [2:27:47, 1.41s/it]
10969it [2:27:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10970it [2:27:51, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10971it [2:27:52, 1.53s/it]
10972it [2:27:54, 1.46s/it]
10973it [2:27:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10974it [2:27:56, 1.41s/it]
10975it [2:27:58, 1.38s/it]
10976it [2:27:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10977it [2:28:00, 1.39s/it]
10978it [2:28:02, 1.38s/it]
10979it [2:28:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10980it [2:28:06, 2.01s/it]
10981it [2:28:08, 1.79s/it]
10982it [2:28:09, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10983it [2:28:11, 1.58s/it]
10984it [2:28:12, 1.50s/it]
10985it [2:28:13, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10986it [2:28:15, 1.45s/it]
10987it [2:28:16, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10988it [2:28:17, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10989it [2:28:20, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10990it [2:28:21, 1.67s/it]
10991it [2:28:23, 1.57s/it]
10992it [2:28:24, 1.49s/it]
10993it [2:28:25, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10994it [2:28:27, 1.42s/it]
10995it [2:28:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
10996it [2:28:29, 1.39s/it]
10997it [2:28:31, 1.36s/it]
10998it [2:28:32, 1.34s/it]
10999it [2:28:33, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11000it [2:28:35, 1.35s/it]
11001it [2:28:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11002it [2:28:38, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11003it [2:28:39, 1.41s/it]
11004it [2:28:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11005it [2:28:42, 1.41s/it]
11006it [2:28:43, 1.37s/it]
11007it [2:28:44, 1.35s/it]
11008it [2:28:46, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11009it [2:28:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11010it [2:28:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11011it [2:28:50, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11012it [2:28:52, 1.52s/it]
11013it [2:28:53, 1.47s/it]
11014it [2:28:54, 1.41s/it]
11015it [2:28:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11016it [2:28:57, 1.38s/it]
11017it [2:28:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11018it [2:29:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11019it [2:29:01, 1.39s/it]
11020it [2:29:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11021it [2:29:04, 1.40s/it]
11022it [2:29:05, 1.38s/it]
11023it [2:29:07, 1.36s/it]
11024it [2:29:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11025it [2:29:10, 1.39s/it]
11026it [2:29:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11027it [2:29:14, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11028it [2:29:16, 1.89s/it]
11029it [2:29:17, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11030it [2:29:19, 1.65s/it]
11031it [2:29:20, 1.56s/it]
11032it [2:29:21, 1.48s/it]
11033it [2:29:23, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11034it [2:29:24, 1.42s/it]
11035it [2:29:25, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11036it [2:29:27, 1.40s/it]
11037it [2:29:28, 1.38s/it]
11038it [2:29:30, 1.37s/it]
11039it [2:29:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11040it [2:29:32, 1.37s/it]
11041it [2:29:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11042it [2:29:35, 1.37s/it]
11043it [2:29:36, 1.35s/it]
11044it [2:29:38, 1.33s/it]
11045it [2:29:39, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11046it [2:29:40, 1.34s/it]
11047it [2:29:42, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11048it [2:29:43, 1.35s/it]
11049it [2:29:44, 1.34s/it]
11050it [2:29:46, 1.32s/it]
11051it [2:29:47, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11052it [2:29:48, 1.36s/it]
11053it [2:29:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11054it [2:29:51, 1.38s/it]
11055it [2:29:52, 1.36s/it]
11056it [2:29:54, 1.35s/it]
11057it [2:29:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11058it [2:29:56, 1.35s/it]
11059it [2:29:58, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11060it [2:29:59, 1.37s/it]
11061it [2:30:00, 1.34s/it]
11062it [2:30:02, 1.34s/it]
11063it [2:30:03, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11064it [2:30:04, 1.35s/it]
11065it [2:30:06, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11066it [2:30:07, 1.38s/it]
11067it [2:30:09, 1.36s/it]
11068it [2:30:10, 1.34s/it]
11069it [2:30:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11070it [2:30:13, 1.37s/it]
11071it [2:30:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11072it [2:30:15, 1.40s/it]
11073it [2:30:17, 1.37s/it]
11074it [2:30:18, 1.35s/it]
11075it [2:30:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11076it [2:30:21, 1.38s/it]
11077it [2:30:22, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11078it [2:30:24, 1.41s/it]
11079it [2:30:25, 1.38s/it]
11080it [2:30:26, 1.36s/it]
11081it [2:30:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11082it [2:30:29, 1.36s/it]
11083it [2:30:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11084it [2:30:32, 1.43s/it]
11085it [2:30:33, 1.39s/it]
11086it [2:30:35, 1.36s/it]
11087it [2:30:36, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11088it [2:30:37, 1.36s/it]
11089it [2:30:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11090it [2:30:40, 1.40s/it]
11091it [2:30:41, 1.37s/it]
11092it [2:30:43, 1.35s/it]
11093it [2:30:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11094it [2:30:46, 1.45s/it]
11095it [2:30:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11096it [2:30:50, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11097it [2:30:51, 1.70s/it]
11098it [2:30:53, 1.58s/it]
11099it [2:30:54, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11100it [2:30:55, 1.49s/it]
11101it [2:30:57, 1.43s/it]
11102it [2:30:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11103it [2:30:59, 1.40s/it]
11104it [2:31:01, 1.37s/it]
11105it [2:31:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11106it [2:31:03, 1.37s/it]
11107it [2:31:05, 1.35s/it]
11108it [2:31:06, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11109it [2:31:07, 1.37s/it]
11110it [2:31:09, 1.35s/it]
11111it [2:31:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11112it [2:31:18, 3.36s/it]
11113it [2:31:19, 2.74s/it]
11114it [2:31:21, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11115it [2:31:27, 3.50s/it]
11116it [2:31:28, 2.84s/it]
11117it [2:31:30, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11118it [2:31:34, 3.13s/it]
11119it [2:31:36, 2.58s/it]
11120it [2:31:37, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11121it [2:31:39, 1.97s/it]
11122it [2:31:40, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11123it [2:31:42, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11124it [2:31:43, 1.77s/it]
11125it [2:31:45, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11126it [2:31:46, 1.60s/it]
11127it [2:31:48, 1.52s/it]
11128it [2:31:49, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11129it [2:31:50, 1.45s/it]
11130it [2:31:52, 1.40s/it]
11131it [2:31:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11132it [2:31:54, 1.39s/it]
11133it [2:31:56, 1.38s/it]
11134it [2:31:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11135it [2:31:58, 1.37s/it]
11136it [2:32:00, 1.34s/it]
11137it [2:32:01, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11138it [2:32:02, 1.37s/it]
11139it [2:32:04, 1.35s/it]
11140it [2:32:05, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11141it [2:32:07, 1.37s/it]
11142it [2:32:08, 1.36s/it]
11143it [2:32:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11144it [2:32:11, 1.37s/it]
11145it [2:32:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11146it [2:32:15, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11147it [2:32:16, 1.75s/it]
11148it [2:32:18, 1.63s/it]
11149it [2:32:19, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11150it [2:32:21, 1.50s/it]
11151it [2:32:22, 1.44s/it]
11152it [2:32:23, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11153it [2:32:25, 1.42s/it]
11154it [2:32:26, 1.38s/it]
11155it [2:32:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11156it [2:32:31, 2.16s/it]
11157it [2:32:33, 1.91s/it]
11158it [2:32:34, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11159it [2:32:35, 1.65s/it]
11160it [2:32:37, 1.55s/it]
11161it [2:32:38, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11162it [2:32:39, 1.46s/it]
11163it [2:32:41, 1.42s/it]
11164it [2:32:42, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11165it [2:32:44, 1.42s/it]
11166it [2:32:45, 1.39s/it]
11167it [2:32:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11168it [2:32:48, 1.38s/it]
11169it [2:32:49, 1.36s/it]
11170it [2:32:50, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11171it [2:32:52, 1.37s/it]
11172it [2:32:53, 1.35s/it]
11173it [2:32:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11174it [2:32:57, 1.77s/it]
11175it [2:32:58, 1.63s/it]
11176it [2:33:00, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11177it [2:33:01, 1.50s/it]
11178it [2:33:02, 1.44s/it]
11179it [2:33:04, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11180it [2:33:05, 1.42s/it]
11181it [2:33:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11182it [2:33:08, 1.43s/it]
11183it [2:33:09, 1.40s/it]
11184it [2:33:11, 1.38s/it]
11185it [2:33:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11186it [2:33:13, 1.37s/it]
11187it [2:33:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11188it [2:33:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11189it [2:33:17, 1.37s/it]
11190it [2:33:19, 1.34s/it]
11191it [2:33:20, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11192it [2:33:21, 1.35s/it]
11193it [2:33:23, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11194it [2:33:24, 1.38s/it]
11195it [2:33:25, 1.36s/it]
11196it [2:33:27, 1.35s/it]
11197it [2:33:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11198it [2:33:29, 1.36s/it]
11199it [2:33:31, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11200it [2:33:32, 1.38s/it]
11201it [2:33:34, 1.36s/it]
11202it [2:33:35, 1.35s/it]
11203it [2:33:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11204it [2:33:38, 1.37s/it]
11205it [2:33:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11206it [2:33:41, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11207it [2:33:43, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11208it [2:33:44, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11209it [2:33:45, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11210it [2:33:47, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11211it [2:33:48, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11212it [2:33:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11213it [2:33:51, 1.42s/it]
11214it [2:33:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11215it [2:33:54, 1.41s/it]
11216it [2:33:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11217it [2:33:56, 1.40s/it]
11218it [2:33:58, 1.37s/it]
11219it [2:33:59, 1.35s/it]
11220it [2:34:00, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11221it [2:34:02, 1.36s/it]
11222it [2:34:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11223it [2:34:05, 1.37s/it]
11224it [2:34:06, 1.35s/it]
11225it [2:34:07, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11226it [2:34:09, 1.36s/it]
11227it [2:34:10, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11228it [2:34:11, 1.37s/it]
11229it [2:34:13, 1.37s/it]
11230it [2:34:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11231it [2:34:16, 1.40s/it]
11232it [2:34:17, 1.37s/it]
11233it [2:34:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11234it [2:34:20, 1.40s/it]
11235it [2:34:21, 1.38s/it]
11236it [2:34:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11237it [2:34:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11238it [2:34:25, 1.37s/it]
11239it [2:34:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11240it [2:34:28, 1.37s/it]
11241it [2:34:29, 1.35s/it]
11242it [2:34:30, 1.33s/it]
11243it [2:34:32, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11244it [2:34:33, 1.37s/it]
11245it [2:34:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11246it [2:34:36, 1.39s/it]
11247it [2:34:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11248it [2:34:39, 1.37s/it]
11249it [2:34:40, 1.35s/it]
11250it [2:34:41, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11251it [2:34:43, 1.35s/it]
11252it [2:34:44, 1.33s/it]
11253it [2:34:45, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11254it [2:34:47, 1.35s/it]
11255it [2:34:48, 1.33s/it]
11256it [2:34:49, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11257it [2:34:51, 1.35s/it]
11258it [2:34:52, 1.34s/it]
11259it [2:34:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11260it [2:34:55, 1.38s/it]
11261it [2:34:56, 1.36s/it]
11262it [2:34:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11263it [2:34:59, 1.40s/it]
11264it [2:35:00, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11265it [2:35:02, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11266it [2:35:04, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11267it [2:35:06, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11268it [2:35:07, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11269it [2:35:11, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11270it [2:35:15, 2.75s/it]
11271it [2:35:16, 2.31s/it]
11272it [2:35:17, 2.02s/it]
11273it [2:35:19, 1.81s/it]
11274it [2:35:20, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11275it [2:35:21, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11276it [2:35:24, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11277it [2:35:26, 1.81s/it]
11278it [2:35:27, 1.65s/it]
11279it [2:35:28, 1.55s/it]
11280it [2:35:30, 1.48s/it]
11281it [2:35:31, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11282it [2:35:32, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11283it [2:35:36, 2.15s/it]
11284it [2:35:37, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11285it [2:35:39, 1.78s/it]
11286it [2:35:40, 1.65s/it]
11287it [2:35:42, 1.56s/it]
11288it [2:35:43, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11289it [2:35:44, 1.49s/it]
11290it [2:35:46, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11291it [2:35:47, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11292it [2:35:49, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11293it [2:35:50, 1.47s/it]
11294it [2:35:52, 1.42s/it]
11295it [2:35:53, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11296it [2:35:54, 1.41s/it]
11297it [2:35:56, 1.38s/it]
11298it [2:35:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11299it [2:35:58, 1.39s/it]
11300it [2:36:00, 1.36s/it]
11301it [2:36:01, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11302it [2:36:03, 1.37s/it]
11303it [2:36:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11304it [2:36:05, 1.38s/it]
11305it [2:36:07, 1.36s/it]
11306it [2:36:08, 1.35s/it]
11307it [2:36:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11308it [2:36:11, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11309it [2:36:12, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11310it [2:36:14, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11311it [2:36:15, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11312it [2:36:17, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11313it [2:36:18, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11314it [2:36:20, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11315it [2:36:23, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11316it [2:36:24, 1.77s/it]
11317it [2:36:25, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11318it [2:36:27, 1.56s/it]
11319it [2:36:28, 1.49s/it]
11320it [2:36:29, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11321it [2:36:31, 1.44s/it]
11322it [2:36:32, 1.40s/it]
11323it [2:36:33, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11324it [2:36:35, 1.39s/it]
11325it [2:36:36, 1.36s/it]
11326it [2:36:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11327it [2:36:39, 1.38s/it]
11328it [2:36:40, 1.35s/it]
11329it [2:36:42, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11330it [2:36:43, 1.36s/it]
11331it [2:36:44, 1.34s/it]
11332it [2:36:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11333it [2:36:47, 1.36s/it]
11334it [2:36:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11335it [2:36:50, 1.39s/it]
11336it [2:36:51, 1.37s/it]
11337it [2:36:53, 1.36s/it]
11338it [2:36:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11339it [2:36:55, 1.36s/it]
11340it [2:36:56, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11341it [2:36:59, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11342it [2:37:00, 1.55s/it]
11343it [2:37:01, 1.49s/it]
11344it [2:37:03, 1.44s/it]
11345it [2:37:04, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11346it [2:37:06, 1.41s/it]
11347it [2:37:07, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11348it [2:37:08, 1.41s/it]
11349it [2:37:10, 1.38s/it]
11350it [2:37:11, 1.36s/it]
11351it [2:37:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11352it [2:37:14, 1.37s/it]
11353it [2:37:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11354it [2:37:17, 1.39s/it]
11355it [2:37:18, 1.38s/it]
11356it [2:37:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11357it [2:37:21, 1.40s/it]
11358it [2:37:22, 1.37s/it]
11359it [2:37:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11360it [2:37:25, 1.36s/it]
11361it [2:37:26, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11362it [2:37:27, 1.38s/it]
11363it [2:37:29, 1.36s/it]
11364it [2:37:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11365it [2:37:31, 1.37s/it]
11366it [2:37:33, 1.35s/it]
11367it [2:37:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11368it [2:37:36, 1.36s/it]
11369it [2:37:37, 1.34s/it]
11370it [2:37:38, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11371it [2:37:40, 1.36s/it]
11372it [2:37:41, 1.34s/it]
11373it [2:37:42, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11374it [2:37:44, 1.35s/it]
11375it [2:37:45, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11376it [2:37:47, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11377it [2:37:48, 1.43s/it]
11378it [2:37:49, 1.39s/it]
11379it [2:37:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11380it [2:37:52, 1.39s/it]
11381it [2:37:53, 1.37s/it]
11382it [2:37:55, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11383it [2:37:56, 1.39s/it]
11384it [2:37:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11385it [2:37:59, 1.38s/it]
11386it [2:38:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11387it [2:38:02, 1.37s/it]
11388it [2:38:03, 1.35s/it]
11389it [2:38:04, 1.33s/it]
11390it [2:38:05, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11391it [2:38:07, 1.35s/it]
11392it [2:38:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11393it [2:38:10, 1.38s/it]
11394it [2:38:11, 1.37s/it]
11395it [2:38:12, 1.36s/it]
11396it [2:38:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11397it [2:38:15, 1.37s/it]
11398it [2:38:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11399it [2:38:19, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11400it [2:38:23, 2.50s/it]
11401it [2:38:24, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11402it [2:38:27, 2.30s/it]
11403it [2:38:28, 2.00s/it]
11404it [2:38:30, 1.79s/it]
11405it [2:38:31, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11406it [2:38:32, 1.57s/it]
11407it [2:38:34, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11408it [2:38:36, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11409it [2:38:46, 4.22s/it]
11410it [2:38:48, 3.36s/it]
11411it [2:38:49, 2.75s/it]
11412it [2:38:50, 2.33s/it]
11413it [2:38:51, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11414it [2:38:53, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11415it [2:38:56, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11416it [2:38:57, 1.98s/it]
11417it [2:38:59, 1.77s/it]
11418it [2:39:00, 1.62s/it]
11419it [2:39:01, 1.53s/it]
11420it [2:39:03, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11421it [2:39:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11422it [2:39:06, 1.65s/it]
11423it [2:39:07, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11424it [2:39:09, 1.51s/it]
11425it [2:39:10, 1.45s/it]
11426it [2:39:11, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11427it [2:39:13, 1.44s/it]
11428it [2:39:14, 1.41s/it]
11429it [2:39:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11430it [2:39:17, 1.38s/it]
11431it [2:39:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11432it [2:39:20, 1.37s/it]
11433it [2:39:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11434it [2:39:22, 1.37s/it]
11435it [2:39:24, 1.35s/it]
11436it [2:39:25, 1.33s/it]
11437it [2:39:26, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11438it [2:39:28, 1.47s/it]
11439it [2:39:29, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11440it [2:39:31, 1.42s/it]
11441it [2:39:32, 1.38s/it]
11442it [2:39:33, 1.35s/it]
11443it [2:39:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11444it [2:39:36, 1.37s/it]
11445it [2:39:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11446it [2:39:42, 2.17s/it]
11447it [2:39:43, 1.90s/it]
11448it [2:39:44, 1.72s/it]
11449it [2:39:45, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11450it [2:39:47, 1.53s/it]
11451it [2:39:48, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11452it [2:39:50, 1.47s/it]
11453it [2:39:51, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11454it [2:39:52, 1.43s/it]
11455it [2:39:54, 1.40s/it]
11456it [2:39:55, 1.37s/it]
11457it [2:39:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11458it [2:39:58, 1.39s/it]
11459it [2:39:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11460it [2:40:02, 1.80s/it]
11461it [2:40:03, 1.66s/it]
11462it [2:40:05, 1.55s/it]
11463it [2:40:06, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11464it [2:40:07, 1.47s/it]
11465it [2:40:09, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11466it [2:40:11, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11467it [2:40:12, 1.56s/it]
11468it [2:40:13, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11469it [2:40:15, 1.47s/it]
11470it [2:40:16, 1.42s/it]
11471it [2:40:17, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11472it [2:40:19, 1.42s/it]
11473it [2:40:20, 1.39s/it]
11474it [2:40:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11475it [2:40:23, 1.38s/it]
11476it [2:40:24, 1.37s/it]
11477it [2:40:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11478it [2:40:27, 1.40s/it]
11479it [2:40:28, 1.38s/it]
11480it [2:40:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11481it [2:40:31, 1.39s/it]
11482it [2:40:33, 1.36s/it]
11483it [2:40:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11484it [2:40:35, 1.38s/it]
11485it [2:40:37, 1.37s/it]
11486it [2:40:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11487it [2:40:39, 1.38s/it]
11488it [2:40:41, 1.36s/it]
11489it [2:40:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11490it [2:40:44, 1.43s/it]
11491it [2:40:45, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11492it [2:40:47, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11493it [2:40:49, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11494it [2:40:51, 1.67s/it]
11495it [2:40:52, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11496it [2:40:53, 1.53s/it]
11497it [2:40:55, 1.46s/it]
11498it [2:40:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11499it [2:40:57, 1.42s/it]
11500it [2:40:59, 1.39s/it]
11501it [2:41:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11502it [2:41:01, 1.38s/it]
11503it [2:41:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11504it [2:41:04, 1.39s/it]
11505it [2:41:05, 1.36s/it]
11506it [2:41:07, 1.34s/it]
11507it [2:41:08, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11508it [2:41:10, 1.37s/it]
11509it [2:41:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11510it [2:41:14, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11511it [2:41:15, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11512it [2:41:17, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11513it [2:41:23, 2.89s/it]
11514it [2:41:24, 2.41s/it]
11515it [2:41:25, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11516it [2:41:27, 1.87s/it]
11517it [2:41:28, 1.71s/it]
11518it [2:41:29, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11519it [2:41:31, 1.55s/it]
11520it [2:41:32, 1.48s/it]
11521it [2:41:33, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11522it [2:41:35, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11523it [2:41:36, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11524it [2:41:38, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11525it [2:41:39, 1.43s/it]
11526it [2:41:40, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11527it [2:41:42, 1.42s/it]
11528it [2:41:43, 1.40s/it]
11529it [2:41:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11530it [2:41:46, 1.41s/it]
11531it [2:41:47, 1.38s/it]
11532it [2:41:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11533it [2:41:52, 1.84s/it]
11534it [2:41:53, 1.68s/it]
11535it [2:41:54, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11536it [2:41:56, 1.52s/it]
11537it [2:41:57, 1.46s/it]
11538it [2:41:58, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11539it [2:42:00, 1.45s/it]
11540it [2:42:01, 1.40s/it]
11541it [2:42:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11542it [2:42:04, 1.40s/it]
11543it [2:42:05, 1.37s/it]
11544it [2:42:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11545it [2:42:08, 1.38s/it]
11546it [2:42:09, 1.35s/it]
11547it [2:42:11, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11548it [2:42:12, 1.40s/it]
11549it [2:42:13, 1.37s/it]
11550it [2:42:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11551it [2:42:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11552it [2:42:17, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11553it [2:42:19, 1.50s/it]
11554it [2:42:21, 1.44s/it]
11555it [2:42:22, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11556it [2:42:23, 1.42s/it]
11557it [2:42:25, 1.38s/it]
11558it [2:42:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11559it [2:42:27, 1.40s/it]
11560it [2:42:29, 1.38s/it]
11561it [2:42:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11562it [2:42:32, 1.38s/it]
11563it [2:42:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11564it [2:42:34, 1.39s/it]
11565it [2:42:36, 1.36s/it]
11566it [2:42:37, 1.34s/it]
11567it [2:42:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11568it [2:42:40, 1.36s/it]
11569it [2:42:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11570it [2:42:43, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11571it [2:42:45, 1.55s/it]
11572it [2:42:46, 1.49s/it]
11573it [2:42:47, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11574it [2:42:49, 1.45s/it]
11575it [2:42:50, 1.41s/it]
11576it [2:42:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11577it [2:42:53, 1.40s/it]
11578it [2:42:54, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11579it [2:42:55, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11580it [2:42:57, 1.39s/it]
11581it [2:42:58, 1.37s/it]
11582it [2:43:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11583it [2:43:01, 1.38s/it]
11584it [2:43:02, 1.36s/it]
11585it [2:43:04, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11586it [2:43:05, 1.42s/it]
11587it [2:43:06, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11588it [2:43:08, 1.41s/it]
11589it [2:43:09, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11590it [2:43:11, 1.42s/it]
11591it [2:43:12, 1.40s/it]
11592it [2:43:13, 1.38s/it]
11593it [2:43:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11594it [2:43:16, 1.39s/it]
11595it [2:43:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11596it [2:43:19, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11597it [2:43:21, 1.48s/it]
11598it [2:43:22, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11599it [2:43:23, 1.41s/it]
11600it [2:43:25, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11601it [2:43:26, 1.42s/it]
11602it [2:43:28, 1.39s/it]
11603it [2:43:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11604it [2:43:30, 1.40s/it]
11605it [2:43:32, 1.37s/it]
11606it [2:43:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11607it [2:43:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11608it [2:43:36, 1.40s/it]
11609it [2:43:37, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11610it [2:43:39, 1.40s/it]
11611it [2:43:40, 1.38s/it]
11612it [2:43:41, 1.35s/it]
11613it [2:43:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11614it [2:43:44, 1.37s/it]
11615it [2:43:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11616it [2:43:47, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11617it [2:43:48, 1.45s/it]
11618it [2:43:50, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11619it [2:43:52, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11620it [2:43:54, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11621it [2:43:55, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11622it [2:43:57, 1.52s/it]
11623it [2:43:58, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11624it [2:43:59, 1.45s/it]
11625it [2:44:01, 1.40s/it]
11626it [2:44:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11627it [2:44:03, 1.41s/it]
11628it [2:44:05, 1.38s/it]
11629it [2:44:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11630it [2:44:08, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11631it [2:44:10, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11632it [2:44:11, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11633it [2:44:13, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11634it [2:44:14, 1.51s/it]
11635it [2:44:15, 1.44s/it]
11636it [2:44:17, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11637it [2:44:18, 1.41s/it]
11638it [2:44:19, 1.38s/it]
11639it [2:44:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11640it [2:44:22, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11641it [2:44:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11642it [2:44:25, 1.40s/it]
11643it [2:44:26, 1.38s/it]
11644it [2:44:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11645it [2:44:29, 1.38s/it]
11646it [2:44:30, 1.36s/it]
11647it [2:44:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11648it [2:44:38, 2.74s/it]
11649it [2:44:39, 2.31s/it]
11650it [2:44:40, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11651it [2:44:42, 1.82s/it]
11652it [2:44:43, 1.67s/it]
11653it [2:44:44, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11654it [2:44:46, 1.51s/it]
11655it [2:44:47, 1.44s/it]
11656it [2:44:48, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11657it [2:44:50, 1.42s/it]
11658it [2:44:51, 1.40s/it]
11659it [2:44:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11660it [2:44:54, 1.39s/it]
11661it [2:44:55, 1.37s/it]
11662it [2:44:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11663it [2:44:58, 1.39s/it]
11664it [2:44:59, 1.37s/it]
11665it [2:45:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11666it [2:45:02, 1.39s/it]
11667it [2:45:03, 1.37s/it]
11668it [2:45:05, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11669it [2:45:06, 1.39s/it]
11670it [2:45:08, 1.38s/it]
11671it [2:45:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11672it [2:45:10, 1.40s/it]
11673it [2:45:12, 1.38s/it]
11674it [2:45:13, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11675it [2:45:14, 1.38s/it]
11676it [2:45:16, 1.36s/it]
11677it [2:45:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11678it [2:45:18, 1.37s/it]
11679it [2:45:20, 1.35s/it]
11680it [2:45:21, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11681it [2:45:23, 1.38s/it]
11682it [2:45:24, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11683it [2:45:27, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11684it [2:45:29, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11685it [2:45:31, 1.78s/it]
11686it [2:45:32, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11687it [2:45:33, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11688it [2:45:35, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11689it [2:45:36, 1.55s/it]
11690it [2:45:38, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11691it [2:45:39, 1.46s/it]
11692it [2:45:40, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11693it [2:45:42, 1.43s/it]
11694it [2:45:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11695it [2:45:45, 1.41s/it]
11696it [2:45:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11697it [2:45:47, 1.40s/it]
11698it [2:45:49, 1.37s/it]
11699it [2:45:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11700it [2:45:56, 2.68s/it]
11701it [2:45:57, 2.26s/it]
11702it [2:45:58, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11703it [2:46:00, 1.84s/it]
11704it [2:46:01, 1.69s/it]
11705it [2:46:03, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11706it [2:46:10, 3.37s/it]
11707it [2:46:11, 2.76s/it]
11708it [2:46:13, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11709it [2:46:16, 2.57s/it]
11710it [2:46:17, 2.19s/it]
11711it [2:46:19, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11712it [2:46:20, 1.78s/it]
11713it [2:46:21, 1.64s/it]
11714it [2:46:23, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11715it [2:46:24, 1.51s/it]
11716it [2:46:25, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11717it [2:46:27, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11718it [2:46:28, 1.44s/it]
11719it [2:46:29, 1.40s/it]
11720it [2:46:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11721it [2:46:32, 1.39s/it]
11722it [2:46:34, 1.36s/it]
11723it [2:46:35, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11724it [2:46:36, 1.38s/it]
11725it [2:46:38, 1.35s/it]
11726it [2:46:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11727it [2:46:40, 1.36s/it]
11728it [2:46:42, 1.35s/it]
11729it [2:46:43, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11730it [2:46:44, 1.37s/it]
11731it [2:46:46, 1.35s/it]
11732it [2:46:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11733it [2:46:48, 1.37s/it]
11734it [2:46:50, 1.36s/it]
11735it [2:46:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11736it [2:46:53, 1.39s/it]
11737it [2:46:54, 1.37s/it]
11738it [2:46:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11739it [2:46:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11740it [2:46:58, 1.38s/it]
11741it [2:46:59, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11742it [2:47:01, 1.38s/it]
11743it [2:47:02, 1.36s/it]
11744it [2:47:03, 1.34s/it]
11745it [2:47:05, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11746it [2:47:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11747it [2:47:12, 2.86s/it]
11748it [2:47:14, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11749it [2:47:15, 2.12s/it]
11750it [2:47:17, 1.88s/it]
11751it [2:47:18, 1.70s/it]
11752it [2:47:19, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11753it [2:47:21, 1.53s/it]
11754it [2:47:22, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11755it [2:47:24, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11756it [2:47:25, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11757it [2:47:26, 1.48s/it]
11758it [2:47:28, 1.43s/it]
11759it [2:47:29, 1.39s/it]
11760it [2:47:30, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11761it [2:47:32, 1.38s/it]
11762it [2:47:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11763it [2:47:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11764it [2:47:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11765it [2:47:37, 1.39s/it]
11766it [2:47:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11767it [2:47:40, 1.41s/it]
11768it [2:47:41, 1.39s/it]
11769it [2:47:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11770it [2:47:44, 1.40s/it]
11771it [2:47:46, 1.37s/it]
11772it [2:47:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11773it [2:47:48, 1.36s/it]
11774it [2:47:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11775it [2:47:51, 1.39s/it]
11776it [2:47:52, 1.36s/it]
11777it [2:47:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11778it [2:47:55, 1.46s/it]
11779it [2:47:57, 1.42s/it]
11780it [2:47:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11781it [2:47:59, 1.41s/it]
11782it [2:48:01, 1.38s/it]
11783it [2:48:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11784it [2:48:04, 1.39s/it]
11785it [2:48:05, 1.37s/it]
11786it [2:48:06, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11787it [2:48:08, 1.38s/it]
11788it [2:48:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11789it [2:48:10, 1.38s/it]
11790it [2:48:12, 1.36s/it]
11791it [2:48:13, 1.35s/it]
11792it [2:48:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11793it [2:48:16, 1.37s/it]
11794it [2:48:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11795it [2:48:19, 1.38s/it]
11796it [2:48:20, 1.36s/it]
11797it [2:48:21, 1.35s/it]
11798it [2:48:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11799it [2:48:24, 1.38s/it]
11800it [2:48:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11801it [2:48:27, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11802it [2:48:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11803it [2:48:29, 1.38s/it]
11804it [2:48:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11805it [2:48:32, 1.40s/it]
11806it [2:48:34, 1.37s/it]
11807it [2:48:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11808it [2:48:36, 1.38s/it]
11809it [2:48:38, 1.36s/it]
11810it [2:48:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11811it [2:48:40, 1.36s/it]
11812it [2:48:42, 1.34s/it]
11813it [2:48:43, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11814it [2:48:45, 1.46s/it]
11815it [2:48:46, 1.43s/it]
11816it [2:48:47, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11817it [2:48:49, 1.45s/it]
11818it [2:48:50, 1.41s/it]
11819it [2:48:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11820it [2:48:53, 1.39s/it]
11821it [2:48:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11822it [2:48:56, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11823it [2:48:57, 1.43s/it]
11824it [2:48:59, 1.39s/it]
11825it [2:49:00, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11826it [2:49:01, 1.38s/it]
11827it [2:49:03, 1.35s/it]
11828it [2:49:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11829it [2:49:06, 1.44s/it]
11830it [2:49:07, 1.40s/it]
11831it [2:49:08, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11832it [2:49:10, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11833it [2:49:12, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11834it [2:49:14, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11835it [2:49:16, 1.70s/it]
11836it [2:49:17, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11837it [2:49:18, 1.60s/it]
11838it [2:49:20, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11839it [2:49:21, 1.52s/it]
11840it [2:49:23, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11841it [2:49:24, 1.47s/it]
11842it [2:49:25, 1.43s/it]
11843it [2:49:27, 1.40s/it]
11844it [2:49:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11845it [2:49:33, 2.41s/it]
11846it [2:49:34, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11847it [2:49:36, 1.91s/it]
11848it [2:49:37, 1.73s/it]
11849it [2:49:38, 1.59s/it]
11850it [2:49:40, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11851it [2:49:41, 1.49s/it]
11852it [2:49:42, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11853it [2:49:45, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11854it [2:49:46, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11855it [2:49:48, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11856it [2:49:49, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11857it [2:49:51, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11858it [2:49:52, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11859it [2:49:56, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11860it [2:49:57, 1.96s/it]
11861it [2:49:59, 1.77s/it]
11862it [2:50:00, 1.63s/it]
11863it [2:50:01, 1.53s/it]
11864it [2:50:03, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11865it [2:50:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11866it [2:50:06, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11867it [2:50:07, 1.57s/it]
11868it [2:50:09, 1.49s/it]
11869it [2:50:10, 1.44s/it]
11870it [2:50:11, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11871it [2:50:13, 1.43s/it]
11872it [2:50:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11873it [2:50:16, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11874it [2:50:18, 1.56s/it]
11875it [2:50:19, 1.48s/it]
11876it [2:50:20, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 96999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11877it [2:50:22, 1.44s/it]
11878it [2:50:23, 1.40s/it]
11879it [2:50:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11880it [2:50:26, 1.39s/it]
11881it [2:50:27, 1.36s/it]
11882it [2:50:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11883it [2:50:30, 1.38s/it]
11884it [2:50:31, 1.36s/it]
11885it [2:50:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11886it [2:50:34, 1.41s/it]
11887it [2:50:35, 1.40s/it]
11888it [2:50:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11889it [2:50:38, 1.41s/it]
11890it [2:50:40, 1.39s/it]
11891it [2:50:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11892it [2:50:42, 1.39s/it]
11893it [2:50:44, 1.37s/it]
11894it [2:50:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11895it [2:50:46, 1.38s/it]
11896it [2:50:48, 1.36s/it]
11897it [2:50:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11898it [2:50:51, 1.39s/it]
11899it [2:50:52, 1.38s/it]
11900it [2:50:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11901it [2:50:55, 1.41s/it]
11902it [2:50:56, 1.37s/it]
11903it [2:50:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11904it [2:50:59, 1.37s/it]
11905it [2:51:00, 1.35s/it]
11906it [2:51:01, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11907it [2:51:03, 1.38s/it]
11908it [2:51:04, 1.36s/it]
11909it [2:51:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11910it [2:51:07, 1.36s/it]
11911it [2:51:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11912it [2:51:10, 1.37s/it]
11913it [2:51:11, 1.35s/it]
11914it [2:51:12, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11915it [2:51:14, 1.36s/it]
11916it [2:51:15, 1.34s/it]
11917it [2:51:16, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11918it [2:51:18, 1.50s/it]
11919it [2:51:19, 1.44s/it]
11920it [2:51:21, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11921it [2:51:22, 1.43s/it]
11922it [2:51:24, 1.39s/it]
11923it [2:51:25, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11924it [2:51:26, 1.41s/it]
11925it [2:51:28, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11926it [2:51:29, 1.39s/it]
11927it [2:51:30, 1.37s/it]
11928it [2:51:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11929it [2:51:33, 1.37s/it]
11930it [2:51:34, 1.36s/it]
11931it [2:51:36, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11932it [2:51:37, 1.38s/it]
11933it [2:51:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11934it [2:51:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11935it [2:51:42, 1.53s/it]
11936it [2:51:43, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11937it [2:51:45, 1.46s/it]
11938it [2:51:46, 1.41s/it]
11939it [2:51:47, 1.38s/it]
11940it [2:51:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11941it [2:51:50, 1.37s/it]
11942it [2:51:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11943it [2:51:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11944it [2:51:54, 1.39s/it]
11945it [2:51:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11946it [2:51:57, 1.38s/it]
11947it [2:51:58, 1.35s/it]
11948it [2:51:59, 1.34s/it]
11949it [2:52:01, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11950it [2:52:02, 1.36s/it]
11951it [2:52:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11952it [2:52:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11953it [2:52:06, 1.39s/it]
11954it [2:52:08, 1.37s/it]
11955it [2:52:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11956it [2:52:10, 1.39s/it]
11957it [2:52:12, 1.36s/it]
11958it [2:52:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11959it [2:52:14, 1.36s/it]
11960it [2:52:16, 1.35s/it]
11961it [2:52:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11962it [2:52:18, 1.39s/it]
11963it [2:52:20, 1.37s/it]
11964it [2:52:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11965it [2:52:23, 1.38s/it]
11966it [2:52:24, 1.36s/it]
11967it [2:52:25, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11968it [2:52:27, 1.37s/it]
11969it [2:52:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11970it [2:52:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11971it [2:52:31, 1.37s/it]
11972it [2:52:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11973it [2:52:34, 1.40s/it]
11974it [2:52:35, 1.37s/it]
11975it [2:52:36, 1.35s/it]
11976it [2:52:37, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11977it [2:52:39, 1.38s/it]
11978it [2:52:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11979it [2:52:42, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11980it [2:52:43, 1.48s/it]
11981it [2:52:45, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11982it [2:52:46, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11983it [2:52:48, 1.42s/it]
11984it [2:52:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11985it [2:52:50, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11986it [2:52:52, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11987it [2:52:53, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11988it [2:52:55, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11989it [2:52:56, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11990it [2:52:57, 1.41s/it]
11991it [2:52:59, 1.38s/it]
11992it [2:53:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11993it [2:53:01, 1.39s/it]
11994it [2:53:03, 1.36s/it]
11995it [2:53:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11996it [2:53:05, 1.35s/it]
11997it [2:53:07, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11998it [2:53:08, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
11999it [2:53:10, 1.37s/it]
12000it [2:53:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12001it [2:53:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12002it [2:53:14, 1.37s/it]
12003it [2:53:15, 1.35s/it]
12004it [2:53:16, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12005it [2:53:18, 1.35s/it]
12006it [2:53:19, 1.38s/it]
12007it [2:53:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12008it [2:53:23, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12009it [2:53:24, 1.57s/it]
12010it [2:53:25, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12011it [2:53:31, 2.69s/it]
12012it [2:53:32, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12013it [2:53:34, 2.06s/it]
12014it [2:53:35, 1.84s/it]
12015it [2:53:36, 1.68s/it]
12016it [2:53:38, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12017it [2:53:39, 1.53s/it]
12018it [2:53:40, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12019it [2:53:42, 1.45s/it]
12020it [2:53:43, 1.41s/it]
12021it [2:53:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12022it [2:53:46, 1.39s/it]
12023it [2:53:47, 1.36s/it]
12024it [2:53:48, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12025it [2:53:50, 1.37s/it]
12026it [2:53:51, 1.35s/it]
12027it [2:53:53, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12028it [2:53:54, 1.36s/it]
12029it [2:53:55, 1.35s/it]
12030it [2:53:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12031it [2:53:58, 1.37s/it]
12032it [2:53:59, 1.35s/it]
12033it [2:54:01, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12034it [2:54:02, 1.36s/it]
12035it [2:54:03, 1.35s/it]
12036it [2:54:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12037it [2:54:06, 1.36s/it]
12038it [2:54:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12039it [2:54:09, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12040it [2:54:11, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12041it [2:54:12, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12042it [2:54:14, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12043it [2:54:15, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12044it [2:54:17, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12045it [2:54:18, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12046it [2:54:20, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12047it [2:54:21, 1.49s/it]
12048it [2:54:22, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12049it [2:54:24, 1.45s/it]
12050it [2:54:25, 1.42s/it]
12051it [2:54:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12052it [2:54:28, 1.40s/it]
12053it [2:54:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12054it [2:54:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12055it [2:54:32, 1.45s/it]
12056it [2:54:34, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12057it [2:54:35, 1.42s/it]
12058it [2:54:36, 1.38s/it]
12059it [2:54:38, 1.36s/it]
12060it [2:54:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12061it [2:54:40, 1.36s/it]
12062it [2:54:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12063it [2:54:43, 1.36s/it]
12064it [2:54:44, 1.34s/it]
12065it [2:54:46, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12066it [2:54:47, 1.37s/it]
12067it [2:54:48, 1.35s/it]
12068it [2:54:50, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12069it [2:54:51, 1.36s/it]
12070it [2:54:52, 1.35s/it]
12071it [2:54:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12072it [2:54:55, 1.35s/it]
12073it [2:54:56, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12074it [2:54:58, 1.39s/it]
12075it [2:54:59, 1.36s/it]
12076it [2:55:01, 1.34s/it]
12077it [2:55:02, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12078it [2:55:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12079it [2:55:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12080it [2:55:07, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12081it [2:55:09, 1.63s/it]
12082it [2:55:10, 1.54s/it]
12083it [2:55:11, 1.47s/it]
12084it [2:55:13, 1.42s/it]
12085it [2:55:14, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12086it [2:55:15, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12087it [2:55:18, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12088it [2:55:20, 1.75s/it]
12089it [2:55:21, 1.62s/it]
12090it [2:55:22, 1.53s/it]
12091it [2:55:24, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12092it [2:55:27, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12093it [2:55:31, 2.71s/it]
12094it [2:55:33, 2.29s/it]
12095it [2:55:34, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12096it [2:55:38, 2.52s/it]
12097it [2:55:39, 2.16s/it]
12098it [2:55:40, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12099it [2:55:42, 1.77s/it]
12100it [2:55:43, 1.64s/it]
12101it [2:55:44, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12102it [2:55:46, 1.56s/it]
12103it [2:55:47, 1.49s/it]
12104it [2:55:49, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12105it [2:55:50, 1.43s/it]
12106it [2:55:51, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12107it [2:55:53, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12108it [2:55:55, 1.53s/it]
12109it [2:55:56, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12110it [2:55:57, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12111it [2:55:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12112it [2:56:00, 1.43s/it]
12113it [2:56:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12114it [2:56:03, 1.44s/it]
12115it [2:56:04, 1.40s/it]
12116it [2:56:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12117it [2:56:07, 1.40s/it]
12118it [2:56:08, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12119it [2:56:10, 1.40s/it]
12120it [2:56:11, 1.38s/it]
12121it [2:56:13, 1.36s/it]
12122it [2:56:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12123it [2:56:15, 1.38s/it]
12124it [2:56:17, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12125it [2:56:18, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12126it [2:56:20, 1.42s/it]
12127it [2:56:21, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12128it [2:56:22, 1.40s/it]
12129it [2:56:24, 1.37s/it]
12130it [2:56:25, 1.35s/it]
12131it [2:56:26, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12132it [2:56:28, 1.36s/it]
12133it [2:56:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12134it [2:56:31, 1.41s/it]
12135it [2:56:32, 1.38s/it]
12136it [2:56:33, 1.36s/it]
12137it [2:56:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12138it [2:56:36, 1.39s/it]
12139it [2:56:37, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12140it [2:56:41, 1.96s/it]
12141it [2:56:42, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12142it [2:56:43, 1.70s/it]
12143it [2:56:45, 1.60s/it]
12144it [2:56:46, 1.52s/it]
12145it [2:56:48, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12146it [2:56:49, 1.46s/it]
12147it [2:56:50, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12148it [2:56:52, 1.42s/it]
12149it [2:56:53, 1.38s/it]
12150it [2:56:54, 1.36s/it]
12151it [2:56:56, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12152it [2:56:57, 1.36s/it]
12153it [2:56:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12154it [2:57:00, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12155it [2:57:02, 1.47s/it]
12156it [2:57:03, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12157it [2:57:04, 1.45s/it]
12158it [2:57:06, 1.41s/it]
12159it [2:57:07, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12160it [2:57:09, 1.41s/it]
12161it [2:57:10, 1.38s/it]
12162it [2:57:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12163it [2:57:13, 1.39s/it]
12164it [2:57:14, 1.36s/it]
12165it [2:57:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12166it [2:57:17, 1.42s/it]
12167it [2:57:18, 1.39s/it]
12168it [2:57:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12169it [2:57:21, 1.39s/it]
12170it [2:57:22, 1.37s/it]
12171it [2:57:24, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12172it [2:57:25, 1.37s/it]
12173it [2:57:26, 1.35s/it]
12174it [2:57:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12175it [2:57:29, 1.35s/it]
12176it [2:57:30, 1.34s/it]
12177it [2:57:32, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12178it [2:57:33, 1.35s/it]
12179it [2:57:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12180it [2:57:36, 1.40s/it]
12181it [2:57:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12182it [2:57:39, 1.39s/it]
12183it [2:57:40, 1.37s/it]
12184it [2:57:41, 1.34s/it]
12185it [2:57:42, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12186it [2:57:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12187it [2:57:47, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12188it [2:57:48, 1.66s/it]
12189it [2:57:49, 1.55s/it]
12190it [2:57:51, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12191it [2:57:52, 1.48s/it]
12192it [2:57:53, 1.44s/it]
12193it [2:57:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12194it [2:57:56, 1.41s/it]
12195it [2:57:57, 1.38s/it]
12196it [2:57:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12197it [2:58:00, 1.38s/it]
12198it [2:58:01, 1.36s/it]
12199it [2:58:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12200it [2:58:04, 1.37s/it]
12201it [2:58:06, 1.35s/it]
12202it [2:58:07, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12203it [2:58:08, 1.39s/it]
12204it [2:58:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12205it [2:58:11, 1.39s/it]
12206it [2:58:12, 1.36s/it]
12207it [2:58:14, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12208it [2:58:15, 1.37s/it]
12209it [2:58:16, 1.35s/it]
12210it [2:58:18, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12211it [2:58:19, 1.38s/it]
12212it [2:58:21, 1.36s/it]
12213it [2:58:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12214it [2:58:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12215it [2:58:31, 3.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12216it [2:58:33, 2.79s/it]
12217it [2:58:34, 2.34s/it]
12218it [2:58:35, 2.03s/it]
12219it [2:58:37, 1.81s/it]
12220it [2:58:38, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12221it [2:58:39, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12222it [2:58:44, 2.41s/it]
12223it [2:58:45, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12224it [2:58:46, 1.88s/it]
12225it [2:58:48, 1.70s/it]
12226it [2:58:49, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12227it [2:58:50, 1.53s/it]
12228it [2:58:52, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12229it [2:58:54, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12230it [2:58:55, 1.57s/it]
12231it [2:58:56, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12232it [2:58:58, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12233it [2:58:59, 1.47s/it]
12234it [2:59:01, 1.43s/it]
12235it [2:59:02, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12236it [2:59:03, 1.41s/it]
12237it [2:59:05, 1.38s/it]
12238it [2:59:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12239it [2:59:07, 1.40s/it]
12240it [2:59:09, 1.37s/it]
12241it [2:59:10, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12242it [2:59:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12243it [2:59:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12244it [2:59:16, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12245it [2:59:18, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12246it [2:59:20, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12247it [2:59:22, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12248it [2:59:27, 2.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12249it [2:59:29, 2.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12250it [2:59:31, 2.38s/it]
12251it [2:59:32, 2.06s/it]
12252it [2:59:33, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12253it [2:59:35, 1.72s/it]
12254it [2:59:36, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12255it [2:59:38, 1.56s/it]
12256it [2:59:39, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12257it [2:59:40, 1.46s/it]
12258it [2:59:42, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12259it [2:59:43, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12260it [2:59:45, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12261it [2:59:46, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12262it [2:59:48, 1.45s/it]
12263it [2:59:49, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12264it [2:59:50, 1.44s/it]
12265it [2:59:52, 1.41s/it]
12266it [2:59:53, 1.38s/it]
12267it [2:59:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12268it [2:59:56, 1.38s/it]
12269it [2:59:57, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12270it [3:00:00, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12271it [3:00:04, 2.41s/it]
12272it [3:00:05, 2.08s/it]
12273it [3:00:06, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12274it [3:00:12, 2.94s/it]
12275it [3:00:13, 2.45s/it]
12276it [3:00:15, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12277it [3:00:20, 3.15s/it]
12278it [3:00:22, 2.61s/it]
12279it [3:00:23, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12280it [3:00:28, 3.22s/it]
12281it [3:00:30, 2.65s/it]
12282it [3:00:31, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12283it [3:00:39, 3.90s/it]
12284it [3:00:40, 3.12s/it]
12285it [3:00:41, 2.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12286it [3:00:43, 2.31s/it]
12287it [3:00:44, 2.02s/it]
12288it [3:00:46, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12289it [3:00:51, 2.70s/it]
12290it [3:00:52, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12291it [3:01:00, 4.00s/it]
12292it [3:01:01, 3.20s/it]
12293it [3:01:02, 2.63s/it]
12294it [3:01:04, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12295it [3:01:07, 2.52s/it]
12296it [3:01:08, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12297it [3:01:10, 2.06s/it]
12298it [3:01:11, 1.85s/it]
12299it [3:01:13, 1.70s/it]
12300it [3:01:14, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12301it [3:01:19, 2.53s/it]
12302it [3:01:20, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12303it [3:01:22, 1.99s/it]
12304it [3:01:23, 1.79s/it]
12305it [3:01:24, 1.64s/it]
12306it [3:01:26, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12307it [3:01:27, 1.54s/it]
12308it [3:01:29, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12309it [3:01:33, 2.30s/it]
12310it [3:01:34, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12311it [3:01:41, 3.45s/it]
12312it [3:01:42, 2.80s/it]
12313it [3:01:44, 2.35s/it]
12314it [3:01:45, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12315it [3:01:48, 2.37s/it]
12316it [3:01:49, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12317it [3:01:51, 1.89s/it]
12318it [3:01:52, 1.71s/it]
12319it [3:01:53, 1.59s/it]
12320it [3:01:55, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12321it [3:01:56, 1.48s/it]
12322it [3:01:57, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12323it [3:02:01, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12324it [3:02:10, 4.05s/it]
12325it [3:02:11, 3.23s/it]
12326it [3:02:12, 2.66s/it]
12327it [3:02:14, 2.25s/it]
12328it [3:02:15, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12329it [3:02:18, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12330it [3:02:21, 2.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12331it [3:02:26, 3.17s/it]
12332it [3:02:27, 2.62s/it]
12333it [3:02:28, 2.23s/it]
12334it [3:02:30, 1.96s/it]
12335it [3:02:31, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12336it [3:02:32, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12337it [3:02:35, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12338it [3:02:38, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12339it [3:02:45, 3.77s/it]
12340it [3:02:47, 3.05s/it]
12341it [3:02:48, 2.54s/it]
12342it [3:02:49, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12343it [3:02:53, 2.69s/it]
12344it [3:02:55, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12345it [3:03:02, 3.86s/it]
12346it [3:03:04, 3.10s/it]
12347it [3:03:05, 2.56s/it]
12348it [3:03:06, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12349it [3:03:10, 2.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12350it [3:03:14, 3.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12351it [3:03:22, 4.60s/it]
12352it [3:03:23, 3.62s/it]
12353it [3:03:25, 2.93s/it]
12354it [3:03:26, 2.44s/it]
12355it [3:03:27, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12356it [3:03:31, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12357it [3:03:36, 3.45s/it]
12358it [3:03:38, 2.80s/it]
12359it [3:03:39, 2.35s/it]
12360it [3:03:40, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12361it [3:03:45, 2.77s/it]
12362it [3:03:46, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12363it [3:03:48, 2.11s/it]
12364it [3:03:49, 1.87s/it]
12365it [3:03:50, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12366it [3:03:52, 1.64s/it]
12367it [3:03:53, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12368it [3:03:56, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12369it [3:04:03, 3.55s/it]
12370it [3:04:05, 2.90s/it]
12371it [3:04:06, 2.42s/it]
12372it [3:04:08, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12373it [3:04:09, 2.00s/it]
12374it [3:04:11, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12375it [3:04:12, 1.70s/it]
12376it [3:04:13, 1.58s/it]
12377it [3:04:15, 1.50s/it]
12378it [3:04:16, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12379it [3:04:18, 1.74s/it]
12380it [3:04:20, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12381it [3:04:21, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12382it [3:04:23, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12383it [3:04:26, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12384it [3:04:28, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12385it [3:04:30, 2.05s/it]
12386it [3:04:31, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12387it [3:04:33, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12388it [3:04:34, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12389it [3:04:36, 1.57s/it]
12390it [3:04:37, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12391it [3:04:38, 1.48s/it]
12392it [3:04:40, 1.43s/it]
12393it [3:04:41, 1.38s/it]
12394it [3:04:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12395it [3:04:44, 1.38s/it]
12396it [3:04:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12397it [3:04:47, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12398it [3:04:49, 1.54s/it]
12399it [3:04:50, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12400it [3:04:55, 2.59s/it]
12401it [3:04:56, 2.20s/it]
12402it [3:04:58, 1.93s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12403it [3:04:59, 1.80s/it]
12404it [3:05:01, 1.67s/it]
12405it [3:05:02, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12406it [3:05:03, 1.55s/it]
12407it [3:05:05, 1.48s/it]
12408it [3:05:06, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12409it [3:05:08, 1.44s/it]
12410it [3:05:09, 1.40s/it]
12411it [3:05:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12412it [3:05:12, 1.39s/it]
12413it [3:05:13, 1.36s/it]
12414it [3:05:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12415it [3:05:16, 1.38s/it]
12416it [3:05:17, 1.36s/it]
12417it [3:05:18, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12418it [3:05:20, 1.37s/it]
12419it [3:05:21, 1.35s/it]
12420it [3:05:22, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12421it [3:05:24, 1.37s/it]
12422it [3:05:25, 1.35s/it]
12423it [3:05:26, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12424it [3:05:28, 1.36s/it]
12425it [3:05:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12426it [3:05:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12427it [3:05:32, 1.37s/it]
12428it [3:05:33, 1.35s/it]
12429it [3:05:34, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12430it [3:05:36, 1.37s/it]
12431it [3:05:37, 1.35s/it]
12432it [3:05:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12433it [3:05:40, 1.45s/it]
12434it [3:05:42, 1.41s/it]
12435it [3:05:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12436it [3:05:44, 1.41s/it]
12437it [3:05:46, 1.38s/it]
12438it [3:05:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12439it [3:05:49, 1.66s/it]
12440it [3:05:51, 1.56s/it]
12441it [3:05:52, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12442it [3:05:53, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12443it [3:05:55, 1.45s/it]
12444it [3:05:56, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12445it [3:05:58, 1.43s/it]
12446it [3:05:59, 1.40s/it]
12447it [3:06:00, 1.37s/it]
12448it [3:06:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12449it [3:06:03, 1.37s/it]
12450it [3:06:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12451it [3:06:06, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12452it [3:06:07, 1.42s/it]
12453it [3:06:09, 1.39s/it]
12454it [3:06:10, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12455it [3:06:11, 1.39s/it]
12456it [3:06:13, 1.37s/it]
12457it [3:06:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12458it [3:06:15, 1.39s/it]
12459it [3:06:17, 1.38s/it]
12460it [3:06:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12461it [3:06:20, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12462it [3:06:21, 1.42s/it]
12463it [3:06:22, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12464it [3:06:24, 1.43s/it]
12465it [3:06:25, 1.39s/it]
12466it [3:06:27, 1.37s/it]
12467it [3:06:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12468it [3:06:29, 1.37s/it]
12469it [3:06:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12470it [3:06:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12471it [3:06:33, 1.39s/it]
12472it [3:06:35, 1.38s/it]
12473it [3:06:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12474it [3:06:40, 2.06s/it]
12475it [3:06:41, 1.84s/it]
12476it [3:06:42, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12477it [3:06:44, 1.61s/it]
12478it [3:06:45, 1.52s/it]
12479it [3:06:46, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12480it [3:06:48, 1.45s/it]
12481it [3:06:49, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12482it [3:06:53, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12483it [3:06:54, 1.91s/it]
12484it [3:06:56, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12485it [3:06:59, 2.11s/it]
12486it [3:07:00, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12487it [3:07:06, 2.98s/it]
12488it [3:07:07, 2.48s/it]
12489it [3:07:08, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12490it [3:07:10, 1.93s/it]
12491it [3:07:11, 1.75s/it]
12492it [3:07:12, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12493it [3:07:14, 1.57s/it]
12494it [3:07:15, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12495it [3:07:17, 1.49s/it]
12496it [3:07:18, 1.44s/it]
12497it [3:07:19, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12498it [3:07:21, 1.41s/it]
12499it [3:07:22, 1.38s/it]
12500it [3:07:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12501it [3:07:25, 1.38s/it]
12502it [3:07:26, 1.36s/it]
12503it [3:07:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12504it [3:07:29, 1.38s/it]
12505it [3:07:30, 1.35s/it]
12506it [3:07:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12507it [3:07:33, 1.54s/it]
12508it [3:07:35, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12509it [3:07:38, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12510it [3:07:41, 2.38s/it]
12511it [3:07:42, 2.05s/it]
12512it [3:07:44, 1.84s/it]
12513it [3:07:45, 1.68s/it]
12514it [3:07:46, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12515it [3:07:49, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12516it [3:07:51, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12517it [3:07:53, 1.84s/it]
12518it [3:07:54, 1.68s/it]
12519it [3:07:55, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12520it [3:07:57, 1.56s/it]
12521it [3:07:58, 1.48s/it]
12522it [3:07:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12523it [3:08:01, 1.44s/it]
12524it [3:08:02, 1.41s/it]
12525it [3:08:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12526it [3:08:05, 1.43s/it]
12527it [3:08:06, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12528it [3:08:08, 1.42s/it]
12529it [3:08:09, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12530it [3:08:11, 1.41s/it]
12531it [3:08:12, 1.38s/it]
12532it [3:08:13, 1.35s/it]
12533it [3:08:15, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12534it [3:08:16, 1.37s/it]
12535it [3:08:17, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12536it [3:08:19, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12537it [3:08:21, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12538it [3:08:22, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12539it [3:08:24, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12540it [3:08:25, 1.52s/it]
12541it [3:08:27, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12542it [3:08:28, 1.47s/it]
12543it [3:08:29, 1.43s/it]
12544it [3:08:31, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12545it [3:08:38, 3.03s/it]
12546it [3:08:39, 2.52s/it]
12547it [3:08:40, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12548it [3:08:42, 1.96s/it]
12549it [3:08:43, 1.77s/it]
12550it [3:08:44, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12551it [3:08:46, 1.56s/it]
12552it [3:08:47, 1.49s/it]
12553it [3:08:48, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12554it [3:08:50, 1.44s/it]
12555it [3:08:51, 1.40s/it]
12556it [3:08:53, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12557it [3:08:54, 1.38s/it]
12558it [3:08:55, 1.37s/it]
12559it [3:08:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12560it [3:08:58, 1.38s/it]
12561it [3:08:59, 1.36s/it]
12562it [3:09:01, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12563it [3:09:02, 1.37s/it]
12564it [3:09:03, 1.36s/it]
12565it [3:09:05, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12566it [3:09:07, 1.56s/it]
12567it [3:09:08, 1.48s/it]
12568it [3:09:09, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12569it [3:09:11, 1.44s/it]
12570it [3:09:12, 1.40s/it]
12571it [3:09:13, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12572it [3:09:15, 1.39s/it]
12573it [3:09:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12574it [3:09:18, 1.38s/it]
12575it [3:09:19, 1.36s/it]
12576it [3:09:20, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12577it [3:09:22, 1.37s/it]
12578it [3:09:23, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12579it [3:09:24, 1.39s/it]
12580it [3:09:26, 1.36s/it]
12581it [3:09:27, 1.34s/it]
12582it [3:09:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12583it [3:09:30, 1.36s/it]
12584it [3:09:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12585it [3:09:33, 1.39s/it]
12586it [3:09:34, 1.38s/it]
12587it [3:09:35, 1.37s/it]
12588it [3:09:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12589it [3:09:41, 2.34s/it]
12590it [3:09:43, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12591it [3:09:44, 1.87s/it]
12592it [3:09:45, 1.71s/it]
12593it [3:09:47, 1.60s/it]
12594it [3:09:48, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12595it [3:09:49, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12596it [3:09:52, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12597it [3:09:53, 1.66s/it]
12598it [3:09:55, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12599it [3:09:56, 1.54s/it]
12600it [3:09:57, 1.48s/it]
12601it [3:09:59, 1.43s/it]
12602it [3:10:00, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12603it [3:10:01, 1.41s/it]
12604it [3:10:03, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12605it [3:10:05, 1.49s/it]
12606it [3:10:06, 1.44s/it]
12607it [3:10:07, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12608it [3:10:09, 1.42s/it]
12609it [3:10:10, 1.39s/it]
12610it [3:10:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12611it [3:10:13, 1.41s/it]
12612it [3:10:14, 1.39s/it]
12613it [3:10:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12614it [3:10:17, 1.38s/it]
12615it [3:10:18, 1.37s/it]
12616it [3:10:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12617it [3:10:21, 1.39s/it]
12618it [3:10:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12619it [3:10:24, 1.39s/it]
12620it [3:10:25, 1.38s/it]
12621it [3:10:26, 1.36s/it]
12622it [3:10:28, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12623it [3:10:29, 1.39s/it]
12624it [3:10:31, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12625it [3:10:32, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12626it [3:10:33, 1.42s/it]
12627it [3:10:35, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12628it [3:10:36, 1.44s/it]
12629it [3:10:38, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12630it [3:10:40, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12631it [3:10:41, 1.55s/it]
12632it [3:10:42, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12633it [3:10:44, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12634it [3:10:45, 1.45s/it]
12635it [3:10:47, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12636it [3:10:48, 1.42s/it]
12637it [3:10:49, 1.38s/it]
12638it [3:10:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12639it [3:10:52, 1.38s/it]
12640it [3:10:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12641it [3:10:55, 1.37s/it]
12642it [3:10:56, 1.35s/it]
12643it [3:10:57, 1.33s/it]
12644it [3:10:59, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12645it [3:11:00, 1.36s/it]
12646it [3:11:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12647it [3:11:03, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12648it [3:11:04, 1.36s/it]
12649it [3:11:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12650it [3:11:07, 1.41s/it]
12651it [3:11:08, 1.38s/it]
12652it [3:11:10, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12653it [3:11:13, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12654it [3:11:14, 1.81s/it]
12655it [3:11:16, 1.66s/it]
12656it [3:11:17, 1.55s/it]
12657it [3:11:18, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12658it [3:11:20, 1.46s/it]
12659it [3:11:21, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12660it [3:11:23, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12661it [3:11:25, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12662it [3:11:26, 1.57s/it]
12663it [3:11:28, 1.49s/it]
12664it [3:11:29, 1.43s/it]
12665it [3:11:30, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12666it [3:11:32, 1.42s/it]
12667it [3:11:33, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12668it [3:11:34, 1.40s/it]
12669it [3:11:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12670it [3:11:37, 1.43s/it]
12671it [3:11:39, 1.40s/it]
12672it [3:11:40, 1.37s/it]
12673it [3:11:41, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12674it [3:11:43, 1.39s/it]
12675it [3:11:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12676it [3:11:46, 1.41s/it]
12677it [3:11:47, 1.40s/it]
12678it [3:11:48, 1.39s/it]
12679it [3:11:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12680it [3:11:51, 1.42s/it]
12681it [3:11:52, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12682it [3:11:54, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12683it [3:11:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12684it [3:11:57, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12685it [3:11:58, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12686it [3:12:00, 1.45s/it]
12687it [3:12:01, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12688it [3:12:03, 1.43s/it]
12689it [3:12:04, 1.39s/it]
12690it [3:12:05, 1.37s/it]
12691it [3:12:07, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12692it [3:12:08, 1.39s/it]
12693it [3:12:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12694it [3:12:11, 1.40s/it]
12695it [3:12:12, 1.38s/it]
12696it [3:12:13, 1.36s/it]
12697it [3:12:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12698it [3:12:16, 1.37s/it]
12699it [3:12:18, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12700it [3:12:19, 1.39s/it]
12701it [3:12:20, 1.37s/it]
12702it [3:12:22, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12703it [3:12:23, 1.39s/it]
12704it [3:12:24, 1.36s/it]
12705it [3:12:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12706it [3:12:27, 1.38s/it]
12707it [3:12:28, 1.36s/it]
12708it [3:12:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12709it [3:12:31, 1.36s/it]
12710it [3:12:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12711it [3:12:35, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12712it [3:12:36, 1.56s/it]
12713it [3:12:37, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12714it [3:12:39, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12715it [3:12:40, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12716it [3:12:42, 1.46s/it]
12717it [3:12:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12718it [3:12:45, 1.42s/it]
12719it [3:12:46, 1.38s/it]
12720it [3:12:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12721it [3:12:49, 1.39s/it]
12722it [3:12:50, 1.36s/it]
12723it [3:12:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12724it [3:12:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12725it [3:12:54, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12726it [3:12:55, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12727it [3:12:57, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12728it [3:12:59, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12729it [3:13:00, 1.51s/it]
12730it [3:13:01, 1.45s/it]
12731it [3:13:03, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12732it [3:13:04, 1.45s/it]
12733it [3:13:06, 1.41s/it]
12734it [3:13:07, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12735it [3:13:08, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12736it [3:13:10, 1.41s/it]
12737it [3:13:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12738it [3:13:13, 1.41s/it]
12739it [3:13:14, 1.38s/it]
12740it [3:13:15, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12741it [3:13:17, 1.41s/it]
12742it [3:13:18, 1.39s/it]
12743it [3:13:19, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12744it [3:13:21, 1.38s/it]
12745it [3:13:22, 1.35s/it]
12746it [3:13:23, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12747it [3:13:25, 1.38s/it]
12748it [3:13:26, 1.36s/it]
12749it [3:13:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12750it [3:13:29, 1.37s/it]
12751it [3:13:30, 1.35s/it]
12752it [3:13:31, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12753it [3:13:33, 1.36s/it]
12754it [3:13:34, 1.34s/it]
12755it [3:13:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12756it [3:13:37, 1.34s/it]
12757it [3:13:38, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12758it [3:13:40, 1.43s/it]
12759it [3:13:41, 1.41s/it]
12760it [3:13:43, 1.39s/it]
12761it [3:13:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12762it [3:13:45, 1.38s/it]
12763it [3:13:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12764it [3:13:49, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12765it [3:13:50, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12766it [3:13:52, 1.51s/it]
12767it [3:13:53, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12768it [3:13:54, 1.44s/it]
12769it [3:13:56, 1.40s/it]
12770it [3:13:57, 1.39s/it]
12771it [3:13:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12772it [3:14:00, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12773it [3:14:04, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12774it [3:14:06, 2.10s/it]
12775it [3:14:07, 1.86s/it]
12776it [3:14:09, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12777it [3:14:10, 1.64s/it]
12778it [3:14:11, 1.55s/it]
12779it [3:14:13, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12780it [3:14:14, 1.51s/it]
12781it [3:14:16, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12782it [3:14:18, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12783it [3:14:20, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12784it [3:14:21, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12785it [3:14:23, 1.58s/it]
12786it [3:14:24, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12787it [3:14:25, 1.50s/it]
12788it [3:14:27, 1.44s/it]
12789it [3:14:28, 1.40s/it]
12790it [3:14:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12791it [3:14:31, 1.37s/it]
12792it [3:14:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12793it [3:14:34, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12794it [3:14:35, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12795it [3:14:36, 1.42s/it]
12796it [3:14:38, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12797it [3:14:39, 1.42s/it]
12798it [3:14:41, 1.39s/it]
12799it [3:14:42, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12800it [3:14:44, 1.48s/it]
12801it [3:14:45, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12802it [3:14:46, 1.45s/it]
12803it [3:14:48, 1.41s/it]
12804it [3:14:49, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12805it [3:14:51, 1.39s/it]
12806it [3:14:52, 1.38s/it]
12807it [3:14:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12808it [3:14:55, 1.41s/it]
12809it [3:14:56, 1.37s/it]
12810it [3:14:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12811it [3:14:59, 1.41s/it]
12812it [3:15:00, 1.39s/it]
12813it [3:15:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12814it [3:15:03, 1.41s/it]
12815it [3:15:04, 1.38s/it]
12816it [3:15:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12817it [3:15:07, 1.38s/it]
12818it [3:15:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12819it [3:15:10, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12820it [3:15:11, 1.36s/it]
12821it [3:15:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12822it [3:15:14, 1.38s/it]
12823it [3:15:15, 1.35s/it]
12824it [3:15:16, 1.34s/it]
12825it [3:15:18, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12826it [3:15:19, 1.35s/it]
12827it [3:15:20, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12828it [3:15:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12829it [3:15:23, 1.41s/it]
12830it [3:15:25, 1.38s/it]
12831it [3:15:26, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12832it [3:15:27, 1.38s/it]
12833it [3:15:29, 1.36s/it]
12834it [3:15:30, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12835it [3:15:32, 1.39s/it]
12836it [3:15:33, 1.37s/it]
12837it [3:15:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12838it [3:15:36, 1.38s/it]
12839it [3:15:37, 1.36s/it]
12840it [3:15:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12841it [3:15:40, 1.38s/it]
12842it [3:15:41, 1.36s/it]
12843it [3:15:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12844it [3:15:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12845it [3:15:45, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12846it [3:15:47, 1.42s/it]
12847it [3:15:48, 1.38s/it]
12848it [3:15:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12849it [3:15:51, 1.38s/it]
12850it [3:15:52, 1.36s/it]
12851it [3:15:53, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12852it [3:15:55, 1.38s/it]
12853it [3:15:56, 1.37s/it]
12854it [3:15:57, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12855it [3:15:59, 1.40s/it]
12856it [3:16:00, 1.37s/it]
12857it [3:16:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12858it [3:16:03, 1.38s/it]
12859it [3:16:04, 1.37s/it]
12860it [3:16:06, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12861it [3:16:07, 1.41s/it]
12862it [3:16:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12863it [3:16:10, 1.40s/it]
12864it [3:16:11, 1.38s/it]
12865it [3:16:13, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12866it [3:16:14, 1.40s/it]
12867it [3:16:15, 1.38s/it]
12868it [3:16:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12869it [3:16:18, 1.41s/it]
12870it [3:16:20, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12871it [3:16:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12872it [3:16:25, 2.26s/it]
12873it [3:16:27, 1.98s/it]
12874it [3:16:28, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12875it [3:16:29, 1.68s/it]
12876it [3:16:31, 1.57s/it]
12877it [3:16:32, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12878it [3:16:33, 1.47s/it]
12879it [3:16:35, 1.42s/it]
12880it [3:16:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12881it [3:16:38, 1.48s/it]
12882it [3:16:39, 1.43s/it]
12883it [3:16:40, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12884it [3:16:42, 1.42s/it]
12885it [3:16:43, 1.39s/it]
12886it [3:16:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12887it [3:16:46, 1.39s/it]
12888it [3:16:47, 1.37s/it]
12889it [3:16:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12890it [3:16:50, 1.35s/it]
12891it [3:16:51, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12892it [3:16:54, 1.67s/it]
12893it [3:16:55, 1.57s/it]
12894it [3:16:56, 1.50s/it]
12895it [3:16:58, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12896it [3:16:59, 1.45s/it]
12897it [3:17:00, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12898it [3:17:02, 1.43s/it]
12899it [3:17:03, 1.39s/it]
12900it [3:17:04, 1.36s/it]
12901it [3:17:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12902it [3:17:07, 1.37s/it]
12903it [3:17:09, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12904it [3:17:10, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12905it [3:17:12, 1.47s/it]
12906it [3:17:13, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12907it [3:17:17, 2.28s/it]
12908it [3:17:19, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12909it [3:17:20, 1.83s/it]
12910it [3:17:21, 1.68s/it]
12911it [3:17:23, 1.57s/it]
12912it [3:17:24, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12913it [3:17:25, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12914it [3:17:30, 2.27s/it]
12915it [3:17:31, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12916it [3:17:32, 1.84s/it]
12917it [3:17:34, 1.68s/it]
12918it [3:17:35, 1.56s/it]
12919it [3:17:36, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12920it [3:17:38, 1.45s/it]
12921it [3:17:39, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12922it [3:17:40, 1.41s/it]
12923it [3:17:42, 1.38s/it]
12924it [3:17:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12925it [3:17:45, 1.40s/it]
12926it [3:17:46, 1.37s/it]
12927it [3:17:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12928it [3:17:49, 1.38s/it]
12929it [3:17:50, 1.36s/it]
12930it [3:17:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12931it [3:17:53, 1.39s/it]
12932it [3:17:54, 1.38s/it]
12933it [3:17:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12934it [3:17:57, 1.39s/it]
12935it [3:17:58, 1.37s/it]
12936it [3:17:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12937it [3:18:01, 1.40s/it]
12938it [3:18:02, 1.38s/it]
12939it [3:18:04, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12940it [3:18:05, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12941it [3:18:06, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12942it [3:18:09, 1.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12943it [3:18:11, 1.67s/it]
12944it [3:18:12, 1.56s/it]
12945it [3:18:13, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12946it [3:18:15, 1.47s/it]
12947it [3:18:16, 1.42s/it]
12948it [3:18:17, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12949it [3:18:19, 1.39s/it]
12950it [3:18:20, 1.38s/it]
12951it [3:18:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12952it [3:18:23, 1.38s/it]
12953it [3:18:24, 1.36s/it]
12954it [3:18:25, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12955it [3:18:27, 1.41s/it]
12956it [3:18:28, 1.36s/it]
12957it [3:18:29, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12958it [3:18:31, 1.37s/it]
12959it [3:18:32, 1.35s/it]
12960it [3:18:34, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12961it [3:18:35, 1.40s/it]
12962it [3:18:36, 1.37s/it]
12963it [3:18:38, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12964it [3:18:39, 1.38s/it]
12965it [3:18:40, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12966it [3:18:42, 1.50s/it]
12967it [3:18:44, 1.45s/it]
12968it [3:18:45, 1.41s/it]
12969it [3:18:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12970it [3:18:48, 1.42s/it]
12971it [3:18:49, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12972it [3:18:51, 1.42s/it]
12973it [3:18:52, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12974it [3:18:53, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 97999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12975it [3:18:55, 1.46s/it]
12976it [3:18:56, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12977it [3:18:58, 1.48s/it]
12978it [3:18:59, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12979it [3:19:01, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12980it [3:19:02, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12981it [3:19:05, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12982it [3:19:07, 1.76s/it]
12983it [3:19:08, 1.62s/it]
12984it [3:19:09, 1.52s/it]
12985it [3:19:10, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12986it [3:19:12, 1.46s/it]
12987it [3:19:13, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12988it [3:19:15, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12989it [3:19:16, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12990it [3:19:17, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12991it [3:19:20, 1.67s/it]
12992it [3:19:21, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12993it [3:19:22, 1.54s/it]
12994it [3:19:24, 1.46s/it]
12995it [3:19:25, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12996it [3:19:27, 1.43s/it]
12997it [3:19:28, 1.40s/it]
12998it [3:19:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
12999it [3:19:31, 1.61s/it]
13000it [3:19:33, 1.52s/it]
13001it [3:19:34, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13002it [3:19:35, 1.45s/it]
13003it [3:19:37, 1.41s/it]
13004it [3:19:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13005it [3:19:39, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13006it [3:19:41, 1.38s/it]
13007it [3:19:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13008it [3:19:44, 1.38s/it]
13009it [3:19:45, 1.37s/it]
13010it [3:19:46, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13011it [3:19:48, 1.38s/it]
13012it [3:19:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13013it [3:19:50, 1.37s/it]
13014it [3:19:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13015it [3:19:53, 1.37s/it]
13016it [3:19:54, 1.35s/it]
13017it [3:19:56, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13018it [3:19:57, 1.37s/it]
13019it [3:19:58, 1.35s/it]
13020it [3:20:00, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13021it [3:20:01, 1.36s/it]
13022it [3:20:02, 1.34s/it]
13023it [3:20:04, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13024it [3:20:05, 1.36s/it]
13025it [3:20:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13026it [3:20:09, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13027it [3:20:13, 2.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13028it [3:20:15, 2.14s/it]
13029it [3:20:16, 1.90s/it]
13030it [3:20:17, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13031it [3:20:19, 1.62s/it]
13032it [3:20:20, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13033it [3:20:22, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13034it [3:20:23, 1.55s/it]
13035it [3:20:24, 1.48s/it]
13036it [3:20:26, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13037it [3:20:27, 1.45s/it]
13038it [3:20:28, 1.40s/it]
13039it [3:20:30, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13040it [3:20:33, 1.80s/it]
13041it [3:20:34, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13042it [3:20:35, 1.58s/it]
13043it [3:20:37, 1.50s/it]
13044it [3:20:38, 1.43s/it]
13045it [3:20:39, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13046it [3:20:41, 1.43s/it]
13047it [3:20:42, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13048it [3:20:43, 1.41s/it]
13049it [3:20:45, 1.38s/it]
13050it [3:20:46, 1.36s/it]
13051it [3:20:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13052it [3:20:49, 1.38s/it]
13053it [3:20:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13054it [3:20:55, 2.47s/it]
13055it [3:20:57, 2.12s/it]
13056it [3:20:58, 1.87s/it]
13057it [3:20:59, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13058it [3:21:03, 2.48s/it]
13059it [3:21:05, 2.13s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13060it [3:21:06, 1.94s/it]
13061it [3:21:08, 1.75s/it]
13062it [3:21:09, 1.62s/it]
13063it [3:21:10, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13064it [3:21:12, 1.51s/it]
13065it [3:21:13, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13066it [3:21:14, 1.45s/it]
13067it [3:21:16, 1.41s/it]
13068it [3:21:17, 1.37s/it]
13069it [3:21:18, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13070it [3:21:20, 1.37s/it]
13071it [3:21:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13072it [3:21:23, 1.39s/it]
13073it [3:21:24, 1.37s/it]
13074it [3:21:25, 1.36s/it]
13075it [3:21:27, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13076it [3:21:28, 1.37s/it]
13077it [3:21:29, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13078it [3:21:31, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13079it [3:21:33, 1.63s/it]
13080it [3:21:34, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13081it [3:21:38, 2.24s/it]
13082it [3:21:40, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13083it [3:21:46, 3.19s/it]
13084it [3:21:47, 2.64s/it]
13085it [3:21:48, 2.25s/it]
13086it [3:21:50, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13087it [3:21:51, 1.83s/it]
13088it [3:21:52, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13089it [3:21:54, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13090it [3:21:56, 1.60s/it]
13091it [3:21:57, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13092it [3:21:58, 1.49s/it]
13093it [3:22:00, 1.43s/it]
13094it [3:22:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13095it [3:22:02, 1.41s/it]
13096it [3:22:04, 1.38s/it]
13097it [3:22:05, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13098it [3:22:06, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13099it [3:22:08, 1.37s/it]
13100it [3:22:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13101it [3:22:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13102it [3:22:12, 1.44s/it]
13103it [3:22:13, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13104it [3:22:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13105it [3:22:16, 1.40s/it]
13106it [3:22:18, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13107it [3:22:19, 1.45s/it]
13108it [3:22:20, 1.40s/it]
13109it [3:22:22, 1.36s/it]
13110it [3:22:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13111it [3:22:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13112it [3:22:29, 2.40s/it]
13113it [3:22:31, 2.08s/it]
13114it [3:22:32, 1.85s/it]
13115it [3:22:33, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13116it [3:22:35, 1.60s/it]
13117it [3:22:36, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13118it [3:22:38, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13119it [3:22:39, 1.62s/it]
13120it [3:22:41, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13121it [3:22:42, 1.50s/it]
13122it [3:22:44, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13123it [3:22:45, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13124it [3:22:47, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13125it [3:22:49, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13126it [3:22:50, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13127it [3:22:52, 1.53s/it]
13128it [3:22:53, 1.46s/it]
13129it [3:22:54, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13130it [3:22:56, 1.44s/it]
13131it [3:22:57, 1.41s/it]
13132it [3:22:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13133it [3:23:00, 1.42s/it]
13134it [3:23:01, 1.40s/it]
13135it [3:23:03, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13136it [3:23:04, 1.41s/it]
13137it [3:23:05, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13138it [3:23:07, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13139it [3:23:12, 2.53s/it]
13140it [3:23:13, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13141it [3:23:15, 1.95s/it]
13142it [3:23:16, 1.75s/it]
13143it [3:23:17, 1.61s/it]
13144it [3:23:19, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13145it [3:23:20, 1.49s/it]
13146it [3:23:22, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13147it [3:23:25, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13148it [3:23:26, 1.82s/it]
13149it [3:23:28, 1.67s/it]
13150it [3:23:29, 1.58s/it]
13151it [3:23:30, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13152it [3:23:32, 1.49s/it]
13153it [3:23:33, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13154it [3:23:37, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13155it [3:23:39, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13156it [3:23:43, 2.74s/it]
13157it [3:23:44, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13158it [3:23:46, 2.12s/it]
13159it [3:23:47, 1.87s/it]
13160it [3:23:49, 1.70s/it]
13161it [3:23:50, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13162it [3:23:51, 1.53s/it]
13163it [3:23:53, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13164it [3:23:55, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13165it [3:23:56, 1.52s/it]
13166it [3:23:57, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13167it [3:23:59, 1.46s/it]
13168it [3:24:00, 1.42s/it]
13169it [3:24:01, 1.40s/it]
13170it [3:24:03, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13171it [3:24:04, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13172it [3:24:07, 1.87s/it]
13173it [3:24:08, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13174it [3:24:10, 1.65s/it]
13175it [3:24:11, 1.55s/it]
13176it [3:24:13, 1.48s/it]
13177it [3:24:14, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13178it [3:24:15, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13179it [3:24:18, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13180it [3:24:19, 1.65s/it]
13181it [3:24:20, 1.54s/it]
13182it [3:24:22, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13183it [3:24:23, 1.47s/it]
13184it [3:24:25, 1.42s/it]
13185it [3:24:26, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13186it [3:24:27, 1.38s/it]
13187it [3:24:29, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13188it [3:24:30, 1.37s/it]
13189it [3:24:31, 1.35s/it]
13190it [3:24:33, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13191it [3:24:34, 1.37s/it]
13192it [3:24:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13193it [3:24:38, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13194it [3:24:40, 1.78s/it]
13195it [3:24:41, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13196it [3:24:43, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13197it [3:24:45, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13198it [3:24:46, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13199it [3:24:48, 1.61s/it]
13200it [3:24:49, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13201it [3:24:51, 1.52s/it]
13202it [3:24:52, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13203it [3:24:54, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13204it [3:24:55, 1.47s/it]
13205it [3:24:56, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13206it [3:24:58, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13207it [3:24:59, 1.43s/it]
13208it [3:25:01, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13209it [3:25:02, 1.42s/it]
13210it [3:25:03, 1.38s/it]
13211it [3:25:05, 1.36s/it]
13212it [3:25:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13213it [3:25:07, 1.36s/it]
13214it [3:25:09, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13215it [3:25:13, 2.40s/it]
13216it [3:25:15, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13217it [3:25:16, 1.89s/it]
13218it [3:25:18, 1.71s/it]
13219it [3:25:19, 1.59s/it]
13220it [3:25:20, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13221it [3:25:22, 1.48s/it]
13222it [3:25:23, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13223it [3:25:26, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13224it [3:25:27, 1.77s/it]
13225it [3:25:29, 1.64s/it]
13226it [3:25:30, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13227it [3:25:32, 1.53s/it]
13228it [3:25:33, 1.48s/it]
13229it [3:25:34, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13230it [3:25:36, 1.44s/it]
13231it [3:25:37, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13232it [3:25:38, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13233it [3:25:40, 1.40s/it]
13234it [3:25:41, 1.36s/it]
13235it [3:25:42, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13236it [3:25:44, 1.37s/it]
13237it [3:25:45, 1.35s/it]
13238it [3:25:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13239it [3:25:48, 1.40s/it]
13240it [3:25:49, 1.37s/it]
13241it [3:25:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13242it [3:25:52, 1.37s/it]
13243it [3:25:53, 1.35s/it]
13244it [3:25:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13245it [3:25:56, 1.38s/it]
13246it [3:25:57, 1.37s/it]
13247it [3:25:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13248it [3:26:00, 1.37s/it]
13249it [3:26:01, 1.36s/it]
13250it [3:26:03, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13251it [3:26:04, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13252it [3:26:06, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13253it [3:26:08, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13254it [3:26:10, 1.64s/it]
13255it [3:26:11, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13256it [3:26:13, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13257it [3:26:14, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13258it [3:26:16, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13259it [3:26:22, 3.07s/it]
13260it [3:26:24, 2.54s/it]
13261it [3:26:25, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13262it [3:26:26, 1.95s/it]
13263it [3:26:28, 1.75s/it]
13264it [3:26:29, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13265it [3:26:30, 1.56s/it]
13266it [3:26:32, 1.48s/it]
13267it [3:26:33, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13268it [3:26:34, 1.44s/it]
13269it [3:26:36, 1.39s/it]
13270it [3:26:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13271it [3:26:39, 1.40s/it]
13272it [3:26:40, 1.37s/it]
13273it [3:26:41, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13274it [3:26:43, 1.39s/it]
13275it [3:26:44, 1.37s/it]
13276it [3:26:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13277it [3:26:47, 1.39s/it]
13278it [3:26:48, 1.36s/it]
13279it [3:26:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13280it [3:26:51, 1.36s/it]
13281it [3:26:52, 1.35s/it]
13282it [3:26:53, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13283it [3:26:56, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13284it [3:27:00, 2.49s/it]
13285it [3:27:02, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13286it [3:27:09, 3.81s/it]
13287it [3:27:11, 3.06s/it]
13288it [3:27:12, 2.54s/it]
13289it [3:27:13, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13290it [3:27:15, 1.94s/it]
13291it [3:27:16, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13292it [3:27:18, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13293it [3:27:19, 1.69s/it]
13294it [3:27:21, 1.58s/it]
13295it [3:27:22, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13296it [3:27:23, 1.48s/it]
13297it [3:27:25, 1.43s/it]
13298it [3:27:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13299it [3:27:27, 1.40s/it]
13300it [3:27:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13301it [3:27:30, 1.40s/it]
13302it [3:27:31, 1.38s/it]
13303it [3:27:33, 1.36s/it]
13304it [3:27:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13305it [3:27:36, 1.42s/it]
13306it [3:27:37, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13307it [3:27:39, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13308it [3:27:42, 2.16s/it]
13309it [3:27:44, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13310it [3:27:51, 3.46s/it]
13311it [3:27:52, 2.82s/it]
13312it [3:27:54, 2.38s/it]
13313it [3:27:55, 2.05s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13314it [3:27:56, 1.87s/it]
13315it [3:27:58, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13316it [3:28:05, 3.52s/it]
13317it [3:28:07, 2.85s/it]
13318it [3:28:08, 2.39s/it]
13319it [3:28:09, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13320it [3:28:11, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13321it [3:28:15, 2.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13322it [3:28:17, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13323it [3:28:19, 2.17s/it]
13324it [3:28:20, 1.91s/it]
13325it [3:28:21, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13326it [3:28:23, 1.67s/it]
13327it [3:28:24, 1.56s/it]
13328it [3:28:25, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13329it [3:28:27, 1.48s/it]
13330it [3:28:28, 1.43s/it]
13331it [3:28:30, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13332it [3:28:32, 1.56s/it]
13333it [3:28:33, 1.50s/it]
13334it [3:28:34, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13335it [3:28:36, 1.48s/it]
13336it [3:28:37, 1.43s/it]
13337it [3:28:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13338it [3:28:40, 1.41s/it]
13339it [3:28:41, 1.39s/it]
13340it [3:28:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13341it [3:28:44, 1.44s/it]
13342it [3:28:45, 1.39s/it]
13343it [3:28:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13344it [3:28:48, 1.39s/it]
13345it [3:28:49, 1.36s/it]
13346it [3:28:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13347it [3:28:52, 1.37s/it]
13348it [3:28:53, 1.35s/it]
13349it [3:28:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13350it [3:28:56, 1.36s/it]
13351it [3:28:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13352it [3:28:59, 1.38s/it]
13353it [3:29:00, 1.38s/it]
13354it [3:29:02, 1.36s/it]
13355it [3:29:03, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13356it [3:29:04, 1.35s/it]
13357it [3:29:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13358it [3:29:07, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13359it [3:29:09, 1.45s/it]
13360it [3:29:10, 1.41s/it]
13361it [3:29:11, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13362it [3:29:13, 1.41s/it]
13363it [3:29:14, 1.38s/it]
13364it [3:29:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13365it [3:29:17, 1.39s/it]
13366it [3:29:18, 1.37s/it]
13367it [3:29:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13368it [3:29:21, 1.38s/it]
13369it [3:29:22, 1.36s/it]
13370it [3:29:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13371it [3:29:25, 1.36s/it]
13372it [3:29:26, 1.34s/it]
13373it [3:29:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13374it [3:29:29, 1.35s/it]
13375it [3:29:30, 1.34s/it]
13376it [3:29:32, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13377it [3:29:33, 1.35s/it]
13378it [3:29:34, 1.34s/it]
13379it [3:29:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13380it [3:29:37, 1.36s/it]
13381it [3:29:38, 1.34s/it]
13382it [3:29:40, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13383it [3:29:41, 1.35s/it]
13384it [3:29:42, 1.35s/it]
13385it [3:29:44, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13386it [3:29:45, 1.38s/it]
13387it [3:29:47, 1.37s/it]
13388it [3:29:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13389it [3:29:52, 2.21s/it]
13390it [3:29:54, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13391it [3:29:55, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13392it [3:29:56, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13393it [3:29:58, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13394it [3:29:59, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13395it [3:30:01, 1.57s/it]
13396it [3:30:02, 1.50s/it]
13397it [3:30:04, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13398it [3:30:05, 1.49s/it]
13399it [3:30:07, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13400it [3:30:11, 2.29s/it]
13401it [3:30:12, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13402it [3:30:14, 1.83s/it]
13403it [3:30:15, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13404it [3:30:16, 1.61s/it]
13405it [3:30:18, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13406it [3:30:19, 1.51s/it]
13407it [3:30:21, 1.46s/it]
13408it [3:30:22, 1.42s/it]
13409it [3:30:23, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13410it [3:30:25, 1.40s/it]
13411it [3:30:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13412it [3:30:28, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13413it [3:30:29, 1.48s/it]
13414it [3:30:30, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13415it [3:30:32, 1.44s/it]
13416it [3:30:33, 1.41s/it]
13417it [3:30:35, 1.39s/it]
13418it [3:30:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13419it [3:30:37, 1.39s/it]
13420it [3:30:39, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13421it [3:30:40, 1.38s/it]
13422it [3:30:41, 1.37s/it]
13423it [3:30:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13424it [3:30:44, 1.37s/it]
13425it [3:30:45, 1.35s/it]
13426it [3:30:47, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13427it [3:30:48, 1.36s/it]
13428it [3:30:49, 1.35s/it]
13429it [3:30:51, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13430it [3:30:52, 1.38s/it]
13431it [3:30:54, 1.35s/it]
13432it [3:30:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13433it [3:30:59, 2.16s/it]
13434it [3:31:00, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13435it [3:31:08, 3.52s/it]
13436it [3:31:09, 2.87s/it]
13437it [3:31:10, 2.41s/it]
13438it [3:31:12, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13439it [3:31:13, 1.89s/it]
13440it [3:31:14, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13441it [3:31:16, 1.63s/it]
13442it [3:31:17, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13443it [3:31:18, 1.51s/it]
13444it [3:31:20, 1.45s/it]
13445it [3:31:21, 1.41s/it]
13446it [3:31:22, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13447it [3:31:24, 1.43s/it]
13448it [3:31:25, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13449it [3:31:27, 1.42s/it]
13450it [3:31:28, 1.38s/it]
13451it [3:31:29, 1.36s/it]
13452it [3:31:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13453it [3:31:32, 1.38s/it]
13454it [3:31:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13455it [3:31:37, 2.04s/it]
13456it [3:31:38, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13457it [3:31:40, 1.71s/it]
13458it [3:31:41, 1.59s/it]
13459it [3:31:42, 1.50s/it]
13460it [3:31:44, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13461it [3:31:45, 1.45s/it]
13462it [3:31:47, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13463it [3:31:49, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13464it [3:31:50, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13465it [3:31:53, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13466it [3:31:55, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13467it [3:31:58, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13468it [3:32:01, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13469it [3:32:03, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13470it [3:32:05, 2.08s/it]
13471it [3:32:06, 1.85s/it]
13472it [3:32:07, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13473it [3:32:09, 1.60s/it]
13474it [3:32:10, 1.52s/it]
13475it [3:32:11, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13476it [3:32:13, 1.45s/it]
13477it [3:32:14, 1.41s/it]
13478it [3:32:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13479it [3:32:17, 1.43s/it]
13480it [3:32:18, 1.40s/it]
13481it [3:32:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13482it [3:32:21, 1.39s/it]
13483it [3:32:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13484it [3:32:24, 1.40s/it]
13485it [3:32:25, 1.37s/it]
13486it [3:32:26, 1.35s/it]
13487it [3:32:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13488it [3:32:29, 1.37s/it]
13489it [3:32:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13490it [3:32:32, 1.39s/it]
13491it [3:32:33, 1.36s/it]
13492it [3:32:34, 1.35s/it]
13493it [3:32:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13494it [3:32:37, 1.35s/it]
13495it [3:32:38, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13496it [3:32:40, 1.35s/it]
13497it [3:32:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13498it [3:32:43, 1.38s/it]
13499it [3:32:44, 1.37s/it]
13500it [3:32:45, 1.35s/it]
13501it [3:32:47, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13502it [3:32:48, 1.38s/it]
13503it [3:32:49, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13504it [3:32:51, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13505it [3:32:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13506it [3:32:54, 1.39s/it]
13507it [3:32:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13508it [3:32:56, 1.42s/it]
13509it [3:32:58, 1.39s/it]
13510it [3:32:59, 1.36s/it]
13511it [3:33:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13512it [3:33:02, 1.38s/it]
13513it [3:33:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13514it [3:33:05, 1.49s/it]
13515it [3:33:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13516it [3:33:08, 1.44s/it]
13517it [3:33:09, 1.41s/it]
13518it [3:33:10, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13519it [3:33:12, 1.40s/it]
13520it [3:33:13, 1.38s/it]
13521it [3:33:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13522it [3:33:16, 1.41s/it]
13523it [3:33:17, 1.38s/it]
13524it [3:33:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13525it [3:33:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13526it [3:33:21, 1.39s/it]
13527it [3:33:23, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13528it [3:33:24, 1.40s/it]
13529it [3:33:25, 1.37s/it]
13530it [3:33:27, 1.35s/it]
13531it [3:33:28, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13532it [3:33:29, 1.36s/it]
13533it [3:33:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13534it [3:33:32, 1.37s/it]
13535it [3:33:34, 1.36s/it]
13536it [3:33:35, 1.34s/it]
13537it [3:33:36, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13538it [3:33:38, 1.36s/it]
13539it [3:33:39, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13540it [3:33:40, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13541it [3:33:42, 1.42s/it]
13542it [3:33:43, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13543it [3:33:45, 1.44s/it]
13544it [3:33:46, 1.39s/it]
13545it [3:33:47, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13546it [3:33:49, 1.39s/it]
13547it [3:33:50, 1.37s/it]
13548it [3:33:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13549it [3:33:53, 1.37s/it]
13550it [3:33:54, 1.35s/it]
13551it [3:33:55, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13552it [3:33:57, 1.36s/it]
13553it [3:33:58, 1.35s/it]
13554it [3:34:00, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13555it [3:34:01, 1.37s/it]
13556it [3:34:02, 1.35s/it]
13557it [3:34:04, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13558it [3:34:05, 1.36s/it]
13559it [3:34:06, 1.35s/it]
13560it [3:34:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13561it [3:34:09, 1.37s/it]
13562it [3:34:10, 1.36s/it]
13563it [3:34:12, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13564it [3:34:13, 1.36s/it]
13565it [3:34:14, 1.34s/it]
13566it [3:34:16, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13567it [3:34:17, 1.46s/it]
13568it [3:34:19, 1.41s/it]
13569it [3:34:20, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13570it [3:34:21, 1.39s/it]
13571it [3:34:23, 1.36s/it]
13572it [3:34:24, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13573it [3:34:25, 1.37s/it]
13574it [3:34:27, 1.34s/it]
13575it [3:34:28, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13576it [3:34:30, 1.37s/it]
13577it [3:34:31, 1.37s/it]
13578it [3:34:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13579it [3:34:34, 1.39s/it]
13580it [3:34:35, 1.37s/it]
13581it [3:34:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13582it [3:34:41, 2.22s/it]
13583it [3:34:42, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13584it [3:34:43, 1.83s/it]
13585it [3:34:45, 1.68s/it]
13586it [3:34:46, 1.57s/it]
13587it [3:34:47, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13588it [3:34:49, 1.48s/it]
13589it [3:34:50, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13590it [3:34:52, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13591it [3:34:55, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13592it [3:34:56, 1.81s/it]
13593it [3:34:58, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13594it [3:34:59, 1.61s/it]
13595it [3:35:00, 1.52s/it]
13596it [3:35:02, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13597it [3:35:03, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13598it [3:35:05, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13599it [3:35:08, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13600it [3:35:20, 5.08s/it]
13601it [3:35:21, 3.95s/it]
13602it [3:35:23, 3.15s/it]
13603it [3:35:24, 2.59s/it]
13604it [3:35:25, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13605it [3:35:27, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13606it [3:35:32, 2.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13607it [3:35:33, 2.43s/it]
13608it [3:35:34, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13609it [3:35:36, 1.93s/it]
13610it [3:35:37, 1.75s/it]
13611it [3:35:39, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13612it [3:35:40, 1.58s/it]
13613it [3:35:41, 1.50s/it]
13614it [3:35:43, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13615it [3:35:44, 1.44s/it]
13616it [3:35:45, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13617it [3:35:47, 1.42s/it]
13618it [3:35:48, 1.39s/it]
13619it [3:35:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13620it [3:35:51, 1.39s/it]
13621it [3:35:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13622it [3:35:54, 1.39s/it]
13623it [3:35:55, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13624it [3:35:56, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13625it [3:35:58, 1.40s/it]
13626it [3:35:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13627it [3:36:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13628it [3:36:02, 1.39s/it]
13629it [3:36:03, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13630it [3:36:05, 1.38s/it]
13631it [3:36:06, 1.37s/it]
13632it [3:36:07, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13633it [3:36:11, 2.05s/it]
13634it [3:36:12, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13635it [3:36:19, 3.36s/it]
13636it [3:36:21, 2.74s/it]
13637it [3:36:22, 2.32s/it]
13638it [3:36:23, 2.02s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13639it [3:36:25, 1.85s/it]
13640it [3:36:26, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13641it [3:36:27, 1.62s/it]
13642it [3:36:29, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13643it [3:36:30, 1.52s/it]
13644it [3:36:32, 1.46s/it]
13645it [3:36:33, 1.41s/it]
13646it [3:36:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13647it [3:36:36, 1.56s/it]
13648it [3:36:38, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13649it [3:36:39, 1.49s/it]
13650it [3:36:40, 1.44s/it]
13651it [3:36:42, 1.40s/it]
13652it [3:36:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13653it [3:36:44, 1.40s/it]
13654it [3:36:46, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13655it [3:36:47, 1.42s/it]
13656it [3:36:49, 1.39s/it]
13657it [3:36:50, 1.37s/it]
13658it [3:36:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13659it [3:36:53, 1.37s/it]
13660it [3:36:54, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13661it [3:36:56, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13662it [3:36:58, 1.63s/it]
13663it [3:36:59, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13664it [3:37:01, 1.51s/it]
13665it [3:37:02, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13666it [3:37:04, 1.46s/it]
13667it [3:37:05, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13668it [3:37:09, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13669it [3:37:12, 2.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13670it [3:37:13, 2.11s/it]
13671it [3:37:14, 1.87s/it]
13672it [3:37:16, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13673it [3:37:17, 1.65s/it]
13674it [3:37:19, 1.56s/it]
13675it [3:37:20, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13676it [3:37:21, 1.51s/it]
13677it [3:37:23, 1.45s/it]
13678it [3:37:24, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13679it [3:37:25, 1.41s/it]
13680it [3:37:27, 1.38s/it]
13681it [3:37:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13682it [3:37:30, 1.38s/it]
13683it [3:37:31, 1.36s/it]
13684it [3:37:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13685it [3:37:34, 1.38s/it]
13686it [3:37:35, 1.37s/it]
13687it [3:37:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13688it [3:37:38, 1.39s/it]
13689it [3:37:39, 1.38s/it]
13690it [3:37:40, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13691it [3:37:42, 1.40s/it]
13692it [3:37:43, 1.38s/it]
13693it [3:37:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13694it [3:37:47, 1.64s/it]
13695it [3:37:48, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13696it [3:37:52, 2.33s/it]
13697it [3:37:54, 2.02s/it]
13698it [3:37:55, 1.82s/it]
13699it [3:37:56, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13700it [3:37:58, 1.60s/it]
13701it [3:37:59, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13702it [3:38:01, 1.52s/it]
13703it [3:38:02, 1.46s/it]
13704it [3:38:03, 1.41s/it]
13705it [3:38:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13706it [3:38:06, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13707it [3:38:10, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13708it [3:38:12, 1.99s/it]
13709it [3:38:13, 1.79s/it]
13710it [3:38:14, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13711it [3:38:16, 1.60s/it]
13712it [3:38:17, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13713it [3:38:18, 1.50s/it]
13714it [3:38:20, 1.44s/it]
13715it [3:38:21, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13716it [3:38:23, 1.51s/it]
13717it [3:38:24, 1.47s/it]
13718it [3:38:25, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13719it [3:38:27, 1.44s/it]
13720it [3:38:28, 1.40s/it]
13721it [3:38:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13722it [3:38:31, 1.40s/it]
13723it [3:38:32, 1.38s/it]
13724it [3:38:34, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13725it [3:38:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13726it [3:38:37, 1.39s/it]
13727it [3:38:38, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13728it [3:38:39, 1.43s/it]
13729it [3:38:41, 1.40s/it]
13730it [3:38:42, 1.37s/it]
13731it [3:38:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13732it [3:38:48, 2.39s/it]
13733it [3:38:49, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13734it [3:38:51, 1.89s/it]
13735it [3:38:52, 1.71s/it]
13736it [3:38:54, 1.59s/it]
13737it [3:38:55, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13738it [3:38:56, 1.47s/it]
13739it [3:38:58, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13740it [3:39:02, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13741it [3:39:04, 2.14s/it]
13742it [3:39:05, 1.89s/it]
13743it [3:39:06, 1.72s/it]
13744it [3:39:08, 1.59s/it]
13745it [3:39:09, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13746it [3:39:12, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13747it [3:39:15, 2.22s/it]
13748it [3:39:16, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13749it [3:39:18, 1.81s/it]
13750it [3:39:19, 1.66s/it]
13751it [3:39:20, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13752it [3:39:22, 1.52s/it]
13753it [3:39:23, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13754it [3:39:25, 1.48s/it]
13755it [3:39:26, 1.43s/it]
13756it [3:39:27, 1.39s/it]
13757it [3:39:29, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13758it [3:39:30, 1.38s/it]
13759it [3:39:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13760it [3:39:33, 1.39s/it]
13761it [3:39:34, 1.36s/it]
13762it [3:39:35, 1.34s/it]
13763it [3:39:37, 1.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13764it [3:39:38, 1.36s/it]
13765it [3:39:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13766it [3:39:41, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13767it [3:39:43, 1.47s/it]
13768it [3:39:44, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13769it [3:39:45, 1.44s/it]
13770it [3:39:47, 1.40s/it]
13771it [3:39:48, 1.37s/it]
13772it [3:39:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13773it [3:39:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13774it [3:39:54, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13775it [3:39:55, 1.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13776it [3:39:57, 1.65s/it]
13777it [3:39:58, 1.55s/it]
13778it [3:39:59, 1.47s/it]
13779it [3:40:00, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13780it [3:40:02, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13781it [3:40:04, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13782it [3:40:06, 1.63s/it]
13783it [3:40:07, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13784it [3:40:11, 2.40s/it]
13785it [3:40:13, 2.06s/it]
13786it [3:40:14, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13787it [3:40:15, 1.72s/it]
13788it [3:40:17, 1.60s/it]
13789it [3:40:18, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13790it [3:40:20, 1.48s/it]
13791it [3:40:21, 1.42s/it]
13792it [3:40:22, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13793it [3:40:24, 1.40s/it]
13794it [3:40:25, 1.38s/it]
13795it [3:40:26, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13796it [3:40:28, 1.40s/it]
13797it [3:40:29, 1.38s/it]
13798it [3:40:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13799it [3:40:32, 1.39s/it]
13800it [3:40:33, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13801it [3:40:35, 1.39s/it]
13802it [3:40:36, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13803it [3:40:37, 1.43s/it]
13804it [3:40:39, 1.38s/it]
13805it [3:40:40, 1.36s/it]
13806it [3:40:41, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13807it [3:40:43, 1.37s/it]
13808it [3:40:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13809it [3:40:45, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13810it [3:40:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13811it [3:40:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13812it [3:40:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13813it [3:40:51, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13814it [3:40:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13815it [3:40:54, 1.44s/it]
13816it [3:40:55, 1.40s/it]
13817it [3:40:57, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13818it [3:40:58, 1.39s/it]
13819it [3:40:59, 1.37s/it]
13820it [3:41:01, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13821it [3:41:02, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13822it [3:41:03, 1.39s/it]
13823it [3:41:05, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13824it [3:41:06, 1.45s/it]
13825it [3:41:08, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13826it [3:41:09, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13827it [3:41:14, 2.36s/it]
13828it [3:41:15, 2.05s/it]
13829it [3:41:16, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13830it [3:41:18, 1.73s/it]
13831it [3:41:19, 1.61s/it]
13832it [3:41:20, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13833it [3:41:22, 1.57s/it]
13834it [3:41:23, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13835it [3:41:25, 1.47s/it]
13836it [3:41:26, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13837it [3:41:28, 1.44s/it]
13838it [3:41:29, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13839it [3:41:30, 1.42s/it]
13840it [3:41:32, 1.39s/it]
13841it [3:41:33, 1.36s/it]
13842it [3:41:34, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13843it [3:41:36, 1.38s/it]
13844it [3:41:37, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13845it [3:41:39, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13846it [3:41:40, 1.41s/it]
13847it [3:41:41, 1.38s/it]
13848it [3:41:43, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13849it [3:41:44, 1.38s/it]
13850it [3:41:45, 1.36s/it]
13851it [3:41:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13852it [3:41:48, 1.41s/it]
13853it [3:41:50, 1.38s/it]
13854it [3:41:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13855it [3:41:52, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13856it [3:41:54, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13857it [3:41:57, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13858it [3:41:58, 1.81s/it]
13859it [3:42:00, 1.66s/it]
13860it [3:42:01, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13861it [3:42:05, 2.21s/it]
13862it [3:42:06, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13863it [3:42:12, 3.20s/it]
13864it [3:42:14, 2.64s/it]
13865it [3:42:15, 2.24s/it]
13866it [3:42:16, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13867it [3:42:18, 1.79s/it]
13868it [3:42:19, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13869it [3:42:21, 1.87s/it]
13870it [3:42:23, 1.71s/it]
13871it [3:42:24, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13872it [3:42:26, 1.61s/it]
13873it [3:42:27, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13874it [3:42:31, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13875it [3:42:35, 2.77s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13876it [3:42:44, 4.50s/it]
13877it [3:42:45, 3.55s/it]
13878it [3:42:46, 2.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13879it [3:42:51, 3.33s/it]
13880it [3:42:52, 2.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13881it [3:42:56, 3.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13882it [3:42:57, 2.57s/it]
13883it [3:42:58, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13884it [3:43:00, 1.96s/it]
13885it [3:43:01, 1.77s/it]
13886it [3:43:02, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13887it [3:43:04, 1.58s/it]
13888it [3:43:05, 1.51s/it]
13889it [3:43:07, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13890it [3:43:10, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13891it [3:43:11, 1.83s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13892it [3:43:13, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13893it [3:43:18, 2.86s/it]
13894it [3:43:20, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13895it [3:43:21, 2.14s/it]
13896it [3:43:23, 1.89s/it]
13897it [3:43:24, 1.72s/it]
13898it [3:43:25, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13899it [3:43:27, 1.61s/it]
13900it [3:43:28, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13901it [3:43:31, 1.98s/it]
13902it [3:43:33, 1.78s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13903it [3:43:36, 2.15s/it]
13904it [3:43:37, 1.90s/it]
13905it [3:43:38, 1.72s/it]
13906it [3:43:39, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13907it [3:43:41, 1.56s/it]
13908it [3:43:42, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13909it [3:43:45, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13910it [3:43:46, 1.67s/it]
13911it [3:43:47, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13912it [3:43:50, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13913it [3:43:52, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13914it [3:43:57, 2.83s/it]
13915it [3:43:58, 2.37s/it]
13916it [3:44:00, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13917it [3:44:01, 1.88s/it]
13918it [3:44:02, 1.71s/it]
13919it [3:44:04, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13920it [3:44:05, 1.54s/it]
13921it [3:44:07, 1.48s/it]
13922it [3:44:08, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13923it [3:44:09, 1.43s/it]
13924it [3:44:11, 1.40s/it]
13925it [3:44:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13926it [3:44:14, 1.43s/it]
13927it [3:44:15, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13928it [3:44:16, 1.46s/it]
13929it [3:44:18, 1.42s/it]
13930it [3:44:19, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13931it [3:44:21, 1.44s/it]
13932it [3:44:22, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13933it [3:44:23, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13934it [3:44:25, 1.43s/it]
13935it [3:44:26, 1.40s/it]
13936it [3:44:28, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13937it [3:44:29, 1.40s/it]
13938it [3:44:30, 1.37s/it]
13939it [3:44:32, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13940it [3:44:35, 1.84s/it]
13941it [3:44:36, 1.67s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13942it [3:44:41, 2.67s/it]
13943it [3:44:42, 2.26s/it]
13944it [3:44:43, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13945it [3:44:46, 2.17s/it]
13946it [3:44:47, 1.92s/it]
13947it [3:44:49, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13948it [3:44:51, 1.85s/it]
13949it [3:44:52, 1.68s/it]
13950it [3:44:53, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13951it [3:44:55, 1.54s/it]
13952it [3:44:56, 1.46s/it]
13953it [3:44:57, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13954it [3:44:59, 1.43s/it]
13955it [3:45:00, 1.40s/it]
13956it [3:45:02, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13957it [3:45:06, 2.32s/it]
13958it [3:45:07, 2.02s/it]
13959it [3:45:09, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13960it [3:45:15, 3.09s/it]
13961it [3:45:16, 2.55s/it]
13962it [3:45:17, 2.17s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13963it [3:45:19, 1.96s/it]
13964it [3:45:20, 1.76s/it]
13965it [3:45:22, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13966it [3:45:23, 1.57s/it]
13967it [3:45:24, 1.50s/it]
13968it [3:45:26, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13969it [3:45:28, 1.73s/it]
13970it [3:45:29, 1.60s/it]
13971it [3:45:31, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13972it [3:45:34, 2.09s/it]
13973it [3:45:35, 1.86s/it]
13974it [3:45:37, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13975it [3:45:42, 2.80s/it]
13976it [3:45:43, 2.35s/it]
13977it [3:45:45, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13978it [3:45:50, 2.91s/it]
13979it [3:45:51, 2.43s/it]
13980it [3:45:52, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13981it [3:45:54, 1.91s/it]
13982it [3:45:55, 1.74s/it]
13983it [3:45:56, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13984it [3:45:58, 1.57s/it]
13985it [3:45:59, 1.49s/it]
13986it [3:46:00, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13987it [3:46:02, 1.45s/it]
13988it [3:46:03, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13989it [3:46:06, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13990it [3:46:10, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13991it [3:46:12, 2.30s/it]
13992it [3:46:13, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13993it [3:46:15, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13994it [3:46:17, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13995it [3:46:21, 2.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
13996it [3:46:30, 4.67s/it]
13997it [3:46:32, 3.66s/it]
13998it [3:46:33, 2.95s/it]
13999it [3:46:34, 2.45s/it]
14000it [3:46:36, 2.11s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14001it [3:46:39, 2.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14002it [3:46:45, 3.69s/it]
14003it [3:46:47, 2.98s/it]
14004it [3:46:48, 2.48s/it]
14005it [3:46:49, 2.13s/it]
14006it [3:46:51, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14007it [3:46:52, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14008it [3:46:55, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14009it [3:46:57, 1.97s/it]
14010it [3:46:58, 1.77s/it]
14011it [3:46:59, 1.63s/it]
14012it [3:47:01, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14013it [3:47:02, 1.51s/it]
14014it [3:47:04, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14015it [3:47:06, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14016it [3:47:09, 2.13s/it]
14017it [3:47:10, 1.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14018it [3:47:12, 1.79s/it]
14019it [3:47:13, 1.65s/it]
14020it [3:47:15, 1.55s/it]
14021it [3:47:16, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14022it [3:47:21, 2.62s/it]
14023it [3:47:23, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14024it [3:47:24, 2.00s/it]
14025it [3:47:25, 1.80s/it]
14026it [3:47:27, 1.66s/it]
14027it [3:47:28, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14028it [3:47:29, 1.53s/it]
14029it [3:47:31, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14030it [3:47:35, 2.30s/it]
14031it [3:47:36, 2.00s/it]
14032it [3:47:38, 1.79s/it]
14033it [3:47:39, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14034it [3:47:40, 1.58s/it]
14035it [3:47:42, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14036it [3:47:45, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14037it [3:47:54, 4.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14038it [3:48:06, 6.56s/it]
14039it [3:48:07, 4.98s/it]
14040it [3:48:09, 3.88s/it]
14041it [3:48:10, 3.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14042it [3:48:11, 2.62s/it]
14043it [3:48:13, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14044it [3:48:20, 3.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14045it [3:48:21, 2.98s/it]
14046it [3:48:22, 2.48s/it]
14047it [3:48:24, 2.13s/it]
14048it [3:48:25, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14049it [3:48:27, 1.75s/it]
14050it [3:48:28, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14051it [3:48:29, 1.56s/it]
14052it [3:48:31, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14053it [3:48:32, 1.49s/it]
14054it [3:48:33, 1.44s/it]
14055it [3:48:35, 1.41s/it]
14056it [3:48:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14057it [3:48:37, 1.38s/it]
14058it [3:48:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14059it [3:48:40, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14060it [3:48:42, 1.46s/it]
14061it [3:48:43, 1.41s/it]
14062it [3:48:44, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14063it [3:48:46, 1.41s/it]
14064it [3:48:47, 1.37s/it]
14065it [3:48:49, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14066it [3:48:50, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14067it [3:48:52, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14068it [3:48:57, 2.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14069it [3:49:04, 3.96s/it]
14070it [3:49:05, 3.17s/it]
14071it [3:49:07, 2.61s/it]
14072it [3:49:08, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 98999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14073it [3:49:10, 1.99s/it]
14074it [3:49:11, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14075it [3:49:12, 1.70s/it]
14076it [3:49:14, 1.58s/it]
14077it [3:49:15, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14078it [3:49:16, 1.48s/it]
14079it [3:49:18, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14080it [3:49:22, 2.37s/it]
14081it [3:49:24, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14082it [3:49:29, 3.20s/it]
14083it [3:49:31, 2.64s/it]
14084it [3:49:32, 2.24s/it]
14085it [3:49:33, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14086it [3:49:35, 1.80s/it]
14087it [3:49:36, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14088it [3:49:38, 1.59s/it]
14089it [3:49:39, 1.50s/it]
14090it [3:49:40, 1.44s/it]
14091it [3:49:42, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14092it [3:49:43, 1.43s/it]
14093it [3:49:44, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14094it [3:49:48, 2.08s/it]
14095it [3:49:49, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14096it [3:49:56, 3.42s/it]
14097it [3:49:58, 2.80s/it]
14098it [3:49:59, 2.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14099it [3:50:01, 2.13s/it]
14100it [3:50:02, 1.89s/it]
14101it [3:50:03, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14102it [3:50:06, 2.03s/it]
14103it [3:50:07, 1.81s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14104it [3:50:14, 3.24s/it]
14105it [3:50:15, 2.66s/it]
14106it [3:50:17, 2.27s/it]
14107it [3:50:18, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14108it [3:50:19, 1.83s/it]
14109it [3:50:21, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14110it [3:50:25, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14111it [3:50:28, 2.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14112it [3:50:29, 2.24s/it]
14113it [3:50:31, 1.99s/it]
14114it [3:50:32, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14115it [3:50:33, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14116it [3:50:35, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14117it [3:50:41, 3.04s/it]
14118it [3:50:43, 2.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14119it [3:50:46, 2.68s/it]
14120it [3:50:47, 2.27s/it]
14121it [3:50:48, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14122it [3:50:50, 1.83s/it]
14123it [3:50:51, 1.69s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14124it [3:50:53, 1.65s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14125it [3:50:57, 2.52s/it]
14126it [3:50:59, 2.18s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14127it [3:51:02, 2.45s/it]
14128it [3:51:03, 2.10s/it]
14129it [3:51:04, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14130it [3:51:06, 1.75s/it]
14131it [3:51:07, 1.63s/it]
14132it [3:51:08, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14133it [3:51:10, 1.52s/it]
14134it [3:51:11, 1.47s/it]
14135it [3:51:13, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14136it [3:51:14, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14137it [3:51:17, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14138it [3:51:22, 2.87s/it]
14139it [3:51:24, 2.41s/it]
14140it [3:51:25, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14141it [3:51:26, 1.89s/it]
14142it [3:51:28, 1.72s/it]
14143it [3:51:29, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14144it [3:51:33, 2.48s/it]
14145it [3:51:35, 2.13s/it]
14146it [3:51:36, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14147it [3:51:38, 1.76s/it]
14148it [3:51:39, 1.63s/it]
14149it [3:51:40, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14150it [3:51:42, 1.53s/it]
14151it [3:51:43, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14152it [3:51:45, 1.68s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14153it [3:51:48, 2.00s/it]
14154it [3:51:49, 1.79s/it]
14155it [3:51:51, 1.65s/it]
14156it [3:51:52, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14157it [3:51:53, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14158it [3:51:57, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14159it [3:52:01, 2.66s/it]
14160it [3:52:02, 2.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14161it [3:52:07, 3.12s/it]
14162it [3:52:09, 2.59s/it]
14163it [3:52:10, 2.21s/it]
14164it [3:52:11, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14165it [3:52:13, 1.95s/it]
14166it [3:52:15, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14167it [3:52:20, 2.93s/it]
14168it [3:52:22, 2.46s/it]
14169it [3:52:23, 2.12s/it]
14170it [3:52:24, 1.89s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14171it [3:52:28, 2.51s/it]
14172it [3:52:30, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14173it [3:52:34, 2.88s/it]
14174it [3:52:35, 2.42s/it]
14175it [3:52:37, 2.09s/it]
14176it [3:52:38, 1.86s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14177it [3:52:41, 2.23s/it]
14178it [3:52:42, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14179it [3:52:47, 2.72s/it]
14180it [3:52:48, 2.29s/it]
14181it [3:52:50, 2.00s/it]
14182it [3:52:51, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14183it [3:52:54, 2.30s/it]
14184it [3:52:56, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14185it [3:53:00, 2.54s/it]
14186it [3:53:01, 2.17s/it]
14187it [3:53:02, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14188it [3:53:04, 1.80s/it]
14189it [3:53:05, 1.66s/it]
14190it [3:53:06, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14191it [3:53:08, 1.51s/it]
14192it [3:53:09, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14193it [3:53:11, 1.46s/it]
14194it [3:53:12, 1.41s/it]
14195it [3:53:13, 1.38s/it]
14196it [3:53:14, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14197it [3:53:17, 1.75s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14198it [3:53:24, 3.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14199it [3:53:35, 5.62s/it]
14200it [3:53:36, 4.35s/it]
14201it [3:53:38, 3.43s/it]
14202it [3:53:39, 2.79s/it]
14203it [3:53:40, 2.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14204it [3:53:43, 2.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14205it [3:53:49, 3.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14206it [3:53:57, 4.86s/it]
14207it [3:53:58, 3.80s/it]
14208it [3:53:59, 3.05s/it]
14209it [3:54:01, 2.54s/it]
14210it [3:54:02, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14211it [3:54:05, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14212it [3:54:08, 2.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14213it [3:54:16, 4.14s/it]
14214it [3:54:17, 3.30s/it]
14215it [3:54:18, 2.71s/it]
14216it [3:54:20, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14217it [3:54:23, 2.57s/it]
14218it [3:54:24, 2.19s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14219it [3:54:30, 3.39s/it]
14220it [3:54:32, 2.77s/it]
14221it [3:54:33, 2.33s/it]
14222it [3:54:34, 2.03s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14223it [3:54:39, 2.76s/it]
14224it [3:54:40, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14225it [3:54:47, 3.64s/it]
14226it [3:54:48, 2.94s/it]
14227it [3:54:49, 2.45s/it]
14228it [3:54:51, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14229it [3:54:55, 2.72s/it]
14230it [3:54:56, 2.32s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14231it [3:54:59, 2.56s/it]
14232it [3:55:01, 2.18s/it]
14233it [3:55:02, 1.92s/it]
14234it [3:55:03, 1.74s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14235it [3:55:05, 1.64s/it]
14236it [3:55:06, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14237it [3:55:07, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14238it [3:55:09, 1.47s/it]
14239it [3:55:10, 1.42s/it]
14240it [3:55:12, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14241it [3:55:13, 1.41s/it]
14242it [3:55:14, 1.38s/it]
14243it [3:55:16, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14244it [3:55:17, 1.39s/it]
14245it [3:55:18, 1.38s/it]
14246it [3:55:20, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14247it [3:55:24, 2.17s/it]
14248it [3:55:25, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14249it [3:55:31, 3.20s/it]
14250it [3:55:33, 2.63s/it]
14251it [3:55:34, 2.24s/it]
14252it [3:55:35, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14253it [3:55:39, 2.50s/it]
14254it [3:55:40, 2.12s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14255it [3:55:51, 4.70s/it]
14256it [3:55:52, 3.70s/it]
14257it [3:55:54, 2.98s/it]
14258it [3:55:55, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14259it [3:55:58, 2.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14260it [3:56:01, 2.73s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14261it [3:56:11, 5.07s/it]
14262it [3:56:13, 3.95s/it]
14263it [3:56:14, 3.16s/it]
14264it [3:56:15, 2.60s/it]
14265it [3:56:17, 2.21s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14266it [3:56:18, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14267it [3:56:21, 2.24s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14268it [3:56:22, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14269it [3:56:28, 3.21s/it]
14270it [3:56:30, 2.63s/it]
14271it [3:56:31, 2.23s/it]
14272it [3:56:32, 1.95s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14273it [3:56:37, 2.86s/it]
14274it [3:56:39, 2.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14275it [3:56:41, 2.51s/it]
14276it [3:56:43, 2.15s/it]
14277it [3:56:44, 1.89s/it]
14278it [3:56:45, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14279it [3:56:50, 2.73s/it]
14280it [3:56:52, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14281it [3:56:53, 2.08s/it]
14282it [3:56:55, 1.85s/it]
14283it [3:56:56, 1.68s/it]
14284it [3:56:57, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14285it [3:56:59, 1.56s/it]
14286it [3:57:00, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14287it [3:57:03, 2.06s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14288it [3:57:06, 2.14s/it]
14289it [3:57:07, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14290it [3:57:13, 3.22s/it]
14291it [3:57:15, 2.65s/it]
14292it [3:57:16, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14293it [3:57:18, 2.04s/it]
14294it [3:57:19, 1.82s/it]
14295it [3:57:20, 1.66s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14296it [3:57:22, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14297it [3:57:24, 1.74s/it]
14298it [3:57:25, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14299it [3:57:27, 1.58s/it]
14300it [3:57:28, 1.49s/it]
14301it [3:57:29, 1.43s/it]
14302it [3:57:31, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14303it [3:57:32, 1.41s/it]
14304it [3:57:33, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14305it [3:57:35, 1.38s/it]
14306it [3:57:36, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14307it [3:57:38, 1.40s/it]
14308it [3:57:39, 1.39s/it]
14309it [3:57:40, 1.38s/it]
14310it [3:57:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14311it [3:57:46, 2.23s/it]
14312it [3:57:47, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14313it [3:57:53, 3.19s/it]
14314it [3:57:55, 2.62s/it]
14315it [3:57:56, 2.22s/it]
14316it [3:57:57, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14317it [3:57:59, 1.77s/it]
14318it [3:58:00, 1.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14319it [3:58:05, 2.64s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14320it [3:58:13, 4.22s/it]
14321it [3:58:14, 3.34s/it]
14322it [3:58:15, 2.73s/it]
14323it [3:58:17, 2.30s/it]
14324it [3:58:18, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14325it [3:58:21, 2.20s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14326it [3:58:22, 2.08s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14327it [3:58:27, 2.79s/it]
14328it [3:58:28, 2.35s/it]
14329it [3:58:29, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14330it [3:58:31, 1.91s/it]
14331it [3:58:32, 1.74s/it]
14332it [3:58:34, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14333it [3:58:37, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14334it [3:58:43, 3.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14335it [3:58:47, 3.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14336it [3:58:50, 3.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14337it [3:58:53, 3.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14338it [3:58:55, 2.92s/it]
14339it [3:58:57, 2.43s/it]
14340it [3:58:58, 2.09s/it]
14341it [3:58:59, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14342it [3:59:01, 1.72s/it]
14343it [3:59:02, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14344it [3:59:04, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14345it [3:59:05, 1.61s/it]
14346it [3:59:07, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14347it [3:59:08, 1.51s/it]
14348it [3:59:09, 1.45s/it]
14349it [3:59:11, 1.41s/it]
14350it [3:59:12, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14351it [3:59:17, 2.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14352it [3:59:34, 6.97s/it]
14353it [3:59:36, 5.27s/it]
14354it [3:59:37, 4.09s/it]
14355it [3:59:38, 3.26s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14356it [3:59:40, 2.73s/it]
14357it [3:59:41, 2.30s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14358it [3:59:43, 2.07s/it]
14359it [3:59:44, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14360it [3:59:45, 1.71s/it]
14361it [3:59:47, 1.60s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14362it [3:59:48, 1.56s/it]
14363it [3:59:50, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14364it [3:59:51, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14365it [3:59:52, 1.47s/it]
14366it [3:59:54, 1.42s/it]
14367it [3:59:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14368it [3:59:56, 1.41s/it]
14369it [3:59:58, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14370it [3:59:59, 1.39s/it]
14371it [4:00:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14372it [4:00:02, 1.41s/it]
14373it [4:00:03, 1.39s/it]
14374it [4:00:05, 1.36s/it]
14375it [4:00:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14376it [4:00:07, 1.36s/it]
14377it [4:00:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14378it [4:00:10, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14379it [4:00:16, 2.84s/it]
14380it [4:00:18, 2.38s/it]
14381it [4:00:19, 2.07s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14382it [4:00:25, 3.29s/it]
14383it [4:00:27, 2.70s/it]
14384it [4:00:28, 2.28s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14385it [4:00:30, 2.13s/it]
14386it [4:00:31, 1.89s/it]
14387it [4:00:32, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14388it [4:00:34, 1.73s/it]
14389it [4:00:35, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14390it [4:00:37, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14391it [4:00:38, 1.51s/it]
14392it [4:00:39, 1.45s/it]
14393it [4:00:41, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14394it [4:00:42, 1.45s/it]
14395it [4:00:44, 1.41s/it]
14396it [4:00:45, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14397it [4:00:49, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14398it [4:00:52, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14399it [4:00:57, 3.18s/it]
14400it [4:00:58, 2.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14401it [4:01:05, 3.73s/it]
14402it [4:01:06, 3.00s/it]
14403it [4:01:07, 2.50s/it]
14404it [4:01:09, 2.14s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14405it [4:01:14, 3.11s/it]
14406it [4:01:15, 2.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14407it [4:01:22, 3.91s/it]
14408it [4:01:24, 3.13s/it]
14409it [4:01:25, 2.60s/it]
14410it [4:01:26, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14411it [4:01:31, 2.96s/it]
14412it [4:01:32, 2.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14413it [4:01:35, 2.39s/it]
14414it [4:01:36, 2.07s/it]
14415it [4:01:37, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14416it [4:01:39, 1.73s/it]
14417it [4:01:40, 1.61s/it]
14418it [4:01:41, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14419it [4:01:43, 1.48s/it]
14420it [4:01:44, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14421it [4:01:46, 1.47s/it]
14422it [4:01:47, 1.42s/it]
14423it [4:01:48, 1.39s/it]
14424it [4:01:49, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14425it [4:01:54, 2.42s/it]
14426it [4:01:56, 2.09s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14427it [4:01:57, 1.89s/it]
14428it [4:01:58, 1.71s/it]
14429it [4:02:00, 1.59s/it]
14430it [4:02:01, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14431it [4:02:02, 1.48s/it]
14432it [4:02:04, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14433it [4:02:05, 1.44s/it]
14434it [4:02:07, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14435it [4:02:08, 1.41s/it]
14436it [4:02:09, 1.38s/it]
14437it [4:02:11, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14438it [4:02:12, 1.39s/it]
14439it [4:02:13, 1.37s/it]
14440it [4:02:15, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14441it [4:02:16, 1.36s/it]
14442it [4:02:17, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14443it [4:02:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14444it [4:02:20, 1.38s/it]
14445it [4:02:21, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14446it [4:02:23, 1.40s/it]
14447it [4:02:24, 1.39s/it]
14448it [4:02:26, 1.36s/it]
14449it [4:02:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14450it [4:02:28, 1.38s/it]
14451it [4:02:30, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14452it [4:02:31, 1.42s/it]
14453it [4:02:33, 1.39s/it]
14454it [4:02:34, 1.38s/it]
14455it [4:02:35, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14456it [4:02:37, 1.44s/it]
14457it [4:02:38, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14458it [4:02:40, 1.42s/it]
14459it [4:02:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14460it [4:02:42, 1.43s/it]
14461it [4:02:44, 1.39s/it]
14462it [4:02:45, 1.36s/it]
14463it [4:02:46, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14464it [4:02:48, 1.36s/it]
14465it [4:02:49, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14466it [4:02:51, 1.38s/it]
14467it [4:02:52, 1.36s/it]
14468it [4:02:53, 1.34s/it]
14469it [4:02:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14470it [4:02:56, 1.36s/it]
14471it [4:02:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14472it [4:02:59, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14473it [4:03:00, 1.36s/it]
14474it [4:03:01, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14475it [4:03:04, 1.82s/it]
14476it [4:03:05, 1.67s/it]
14477it [4:03:07, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14478it [4:03:08, 1.54s/it]
14479it [4:03:10, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14480it [4:03:13, 2.04s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14481it [4:03:15, 1.89s/it]
14482it [4:03:16, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14483it [4:03:17, 1.63s/it]
14484it [4:03:19, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14485it [4:03:20, 1.52s/it]
14486it [4:03:21, 1.45s/it]
14487it [4:03:23, 1.40s/it]
14488it [4:03:24, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14489it [4:03:25, 1.40s/it]
14490it [4:03:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14491it [4:03:28, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14492it [4:03:30, 1.47s/it]
14493it [4:03:31, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14494it [4:03:33, 1.44s/it]
14495it [4:03:34, 1.41s/it]
14496it [4:03:35, 1.38s/it]
14497it [4:03:37, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14498it [4:03:38, 1.39s/it]
14499it [4:03:39, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14500it [4:03:42, 1.88s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14501it [4:03:44, 1.81s/it]
14502it [4:03:45, 1.67s/it]
14503it [4:03:47, 1.57s/it]
14504it [4:03:48, 1.49s/it]
14505it [4:03:49, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14506it [4:03:51, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14507it [4:03:54, 2.09s/it]
14508it [4:03:56, 1.86s/it]
14509it [4:03:57, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14510it [4:03:59, 1.64s/it]
14511it [4:04:00, 1.54s/it]
14512it [4:04:01, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14513it [4:04:03, 1.45s/it]
14514it [4:04:04, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14515it [4:04:05, 1.42s/it]
14516it [4:04:07, 1.39s/it]
14517it [4:04:08, 1.37s/it]
14518it [4:04:09, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14519it [4:04:11, 1.36s/it]
14520it [4:04:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14521it [4:04:13, 1.39s/it]
14522it [4:04:15, 1.37s/it]
14523it [4:04:16, 1.35s/it]
14524it [4:04:17, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14525it [4:04:19, 1.37s/it]
14526it [4:04:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14527it [4:04:22, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14528it [4:04:24, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14529it [4:04:25, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14530it [4:04:26, 1.46s/it]
14531it [4:04:28, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14532it [4:04:29, 1.42s/it]
14533it [4:04:30, 1.39s/it]
14534it [4:04:32, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14535it [4:04:33, 1.41s/it]
14536it [4:04:35, 1.39s/it]
14537it [4:04:36, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14538it [4:04:37, 1.40s/it]
14539it [4:04:39, 1.37s/it]
14540it [4:04:40, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14541it [4:04:41, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14542it [4:04:43, 1.40s/it]
14543it [4:04:44, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14544it [4:04:46, 1.40s/it]
14545it [4:04:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14546it [4:04:49, 1.42s/it]
14547it [4:04:50, 1.38s/it]
14548it [4:04:51, 1.36s/it]
14549it [4:04:52, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14550it [4:04:54, 1.35s/it]
14551it [4:04:55, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14552it [4:04:57, 1.38s/it]
14553it [4:04:58, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14554it [4:04:59, 1.40s/it]
14555it [4:05:01, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14556it [4:05:02, 1.39s/it]
14557it [4:05:03, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14558it [4:05:05, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14559it [4:05:06, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14560it [4:05:08, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14561it [4:05:11, 1.90s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14562it [4:05:12, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14563it [4:05:14, 1.70s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14564it [4:05:15, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14565it [4:05:18, 2.01s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14566it [4:05:20, 1.87s/it]
14567it [4:05:21, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14568it [4:05:23, 1.66s/it]
14569it [4:05:24, 1.55s/it]
14570it [4:05:25, 1.48s/it]
14571it [4:05:27, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14572it [4:05:28, 1.57s/it]
14573it [4:05:30, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14574it [4:05:31, 1.47s/it]
14575it [4:05:32, 1.41s/it]
14576it [4:05:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14577it [4:05:35, 1.40s/it]
14578it [4:05:37, 1.37s/it]
14579it [4:05:38, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14580it [4:05:39, 1.41s/it]
14581it [4:05:41, 1.38s/it]
14582it [4:05:42, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14583it [4:05:43, 1.37s/it]
14584it [4:05:45, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14585it [4:05:46, 1.37s/it]
14586it [4:05:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14587it [4:05:49, 1.39s/it]
14588it [4:05:50, 1.36s/it]
14589it [4:05:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14590it [4:05:53, 1.39s/it]
14591it [4:05:54, 1.36s/it]
14592it [4:05:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14593it [4:05:57, 1.38s/it]
14594it [4:05:58, 1.37s/it]
14595it [4:06:00, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14596it [4:06:01, 1.38s/it]
14597it [4:06:02, 1.36s/it]
14598it [4:06:04, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14599it [4:06:05, 1.37s/it]
14600it [4:06:06, 1.35s/it]
14601it [4:06:08, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14602it [4:06:10, 1.46s/it]
14603it [4:06:11, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14604it [4:06:12, 1.44s/it]
14605it [4:06:14, 1.40s/it]
14606it [4:06:15, 1.37s/it]
14607it [4:06:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14608it [4:06:18, 1.36s/it]
14609it [4:06:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14610it [4:06:20, 1.37s/it]
14611it [4:06:22, 1.36s/it]
14612it [4:06:23, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14613it [4:06:24, 1.38s/it]
14614it [4:06:26, 1.36s/it]
14615it [4:06:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14616it [4:06:29, 1.38s/it]
14617it [4:06:30, 1.36s/it]
14618it [4:06:31, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14619it [4:06:33, 1.37s/it]
14620it [4:06:34, 1.36s/it]
14621it [4:06:35, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14622it [4:06:37, 1.38s/it]
14623it [4:06:38, 1.36s/it]
14624it [4:06:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14625it [4:06:41, 1.38s/it]
14626it [4:06:42, 1.36s/it]
14627it [4:06:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14628it [4:06:45, 1.38s/it]
14629it [4:06:46, 1.36s/it]
14630it [4:06:47, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14631it [4:06:49, 1.41s/it]
14632it [4:06:50, 1.38s/it]
14633it [4:06:52, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14634it [4:06:53, 1.37s/it]
14635it [4:06:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14636it [4:06:56, 1.36s/it]
14637it [4:06:57, 1.34s/it]
14638it [4:06:58, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14639it [4:07:00, 1.36s/it]
14640it [4:07:01, 1.34s/it]
14641it [4:07:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14642it [4:07:04, 1.37s/it]
14643it [4:07:05, 1.35s/it]
14644it [4:07:06, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14645it [4:07:08, 1.36s/it]
14646it [4:07:09, 1.35s/it]
14647it [4:07:11, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14648it [4:07:12, 1.35s/it]
14649it [4:07:13, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14650it [4:07:15, 1.37s/it]
14651it [4:07:16, 1.34s/it]
14652it [4:07:17, 1.33s/it]
14653it [4:07:19, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14654it [4:07:20, 1.37s/it]
14655it [4:07:21, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14656it [4:07:23, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14657it [4:07:24, 1.42s/it]
14658it [4:07:26, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14659it [4:07:27, 1.50s/it]
14660it [4:07:29, 1.45s/it]
14661it [4:07:30, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14662it [4:07:32, 1.46s/it]
14663it [4:07:33, 1.41s/it]
14664it [4:07:34, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14665it [4:07:36, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14666it [4:07:37, 1.40s/it]
14667it [4:07:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14668it [4:07:40, 1.40s/it]
14669it [4:07:41, 1.37s/it]
14670it [4:07:42, 1.36s/it]
14671it [4:07:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14672it [4:07:45, 1.37s/it]
14673it [4:07:47, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14674it [4:07:48, 1.39s/it]
14675it [4:07:49, 1.37s/it]
14676it [4:07:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14677it [4:07:52, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14678it [4:07:56, 2.22s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14679it [4:07:58, 1.99s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14680it [4:08:01, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14681it [4:08:02, 2.01s/it]
14682it [4:08:03, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14683it [4:08:05, 1.69s/it]
14684it [4:08:06, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14685it [4:08:07, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14686it [4:08:09, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14687it [4:08:10, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14688it [4:08:12, 1.48s/it]
14689it [4:08:13, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14690it [4:08:15, 1.46s/it]
14691it [4:08:16, 1.41s/it]
14692it [4:08:17, 1.39s/it]
14693it [4:08:19, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14694it [4:08:22, 1.88s/it]
14695it [4:08:23, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14696it [4:08:24, 1.62s/it]
14697it [4:08:26, 1.52s/it]
14698it [4:08:27, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14699it [4:08:29, 1.47s/it]
14700it [4:08:30, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14701it [4:08:31, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14702it [4:08:33, 1.44s/it]
14703it [4:08:34, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14704it [4:08:36, 1.43s/it]
14705it [4:08:37, 1.40s/it]
14706it [4:08:38, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14707it [4:08:40, 1.39s/it]
14708it [4:08:41, 1.38s/it]
14709it [4:08:42, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14710it [4:08:44, 1.39s/it]
14711it [4:08:45, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14712it [4:08:47, 1.44s/it]
14713it [4:08:48, 1.40s/it]
14714it [4:08:49, 1.37s/it]
14715it [4:08:51, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14716it [4:08:52, 1.36s/it]
14717it [4:08:53, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14718it [4:08:55, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14719it [4:08:57, 1.50s/it]
14720it [4:08:58, 1.45s/it]
14721it [4:08:59, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14722it [4:09:01, 1.41s/it]
14723it [4:09:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14724it [4:09:04, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14725it [4:09:05, 1.47s/it]
14726it [4:09:07, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14727it [4:09:08, 1.42s/it]
14728it [4:09:09, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14729it [4:09:11, 1.41s/it]
14730it [4:09:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14731it [4:09:13, 1.38s/it]
14732it [4:09:15, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14733it [4:09:16, 1.40s/it]
14734it [4:09:18, 1.36s/it]
14735it [4:09:19, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14736it [4:09:20, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14737it [4:09:22, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14738it [4:09:23, 1.45s/it]
14739it [4:09:25, 1.41s/it]
14740it [4:09:26, 1.38s/it]
14741it [4:09:27, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14742it [4:09:29, 1.38s/it]
14743it [4:09:30, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14744it [4:09:32, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14745it [4:09:33, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14746it [4:09:35, 1.44s/it]
14747it [4:09:36, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14748it [4:09:37, 1.43s/it]
14749it [4:09:39, 1.39s/it]
14750it [4:09:40, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14751it [4:09:42, 1.40s/it]
14752it [4:09:43, 1.37s/it]
14753it [4:09:44, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14754it [4:09:46, 1.39s/it]
14755it [4:09:47, 1.37s/it]
14756it [4:09:48, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14757it [4:09:50, 1.40s/it]
14758it [4:09:51, 1.38s/it]
14759it [4:09:52, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14760it [4:09:54, 1.38s/it]
14761it [4:09:55, 1.36s/it]
14762it [4:09:56, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14763it [4:09:58, 1.40s/it]
14764it [4:09:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14765it [4:10:01, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14766it [4:10:05, 2.23s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14767it [4:10:06, 1.99s/it]
14768it [4:10:08, 1.79s/it]
14769it [4:10:09, 1.65s/it]
14770it [4:10:10, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14771it [4:10:12, 1.51s/it]
14772it [4:10:13, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14773it [4:10:15, 1.63s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14774it [4:10:17, 1.70s/it]
14775it [4:10:18, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14776it [4:10:20, 1.56s/it]
14777it [4:10:21, 1.48s/it]
14778it [4:10:22, 1.42s/it]
14779it [4:10:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14780it [4:10:25, 1.41s/it]
14781it [4:10:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14782it [4:10:28, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14783it [4:10:29, 1.42s/it]
14784it [4:10:31, 1.39s/it]
14785it [4:10:32, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14786it [4:10:38, 2.74s/it]
14787it [4:10:39, 2.30s/it]
14788it [4:10:41, 2.00s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14789it [4:10:42, 1.84s/it]
14790it [4:10:43, 1.68s/it]
14791it [4:10:45, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14792it [4:10:46, 1.53s/it]
14793it [4:10:47, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14794it [4:10:49, 1.47s/it]
14795it [4:10:50, 1.42s/it]
14796it [4:10:52, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14797it [4:10:53, 1.44s/it]
14798it [4:10:54, 1.39s/it]
14799it [4:10:56, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14800it [4:10:57, 1.39s/it]
14801it [4:10:58, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14802it [4:11:00, 1.38s/it]
14803it [4:11:01, 1.36s/it]
14804it [4:11:02, 1.33s/it]
14805it [4:11:04, 1.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14806it [4:11:05, 1.35s/it]
14807it [4:11:06, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14808it [4:11:08, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14809it [4:11:10, 1.44s/it]
14810it [4:11:11, 1.40s/it]
14811it [4:11:12, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14812it [4:11:14, 1.40s/it]
14813it [4:11:15, 1.37s/it]
14814it [4:11:16, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14815it [4:11:18, 1.38s/it]
14816it [4:11:19, 1.36s/it]
14817it [4:11:20, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14818it [4:11:22, 1.36s/it]
14819it [4:11:23, 1.34s/it]
14820it [4:11:24, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14821it [4:11:26, 1.36s/it]
14822it [4:11:27, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14823it [4:11:29, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14824it [4:11:30, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14825it [4:11:31, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14826it [4:11:33, 1.41s/it]
14827it [4:11:34, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14828it [4:11:40, 2.65s/it]
14829it [4:11:41, 2.24s/it]
14830it [4:11:42, 1.96s/it]
14831it [4:11:44, 1.76s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14832it [4:11:45, 1.65s/it]
14833it [4:11:46, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14834it [4:11:48, 1.51s/it]
14835it [4:11:49, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14836it [4:11:57, 3.52s/it]
14837it [4:11:59, 2.85s/it]
14838it [4:12:00, 2.41s/it]
14839it [4:12:02, 2.10s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14840it [4:12:03, 1.89s/it]
14841it [4:12:04, 1.72s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14842it [4:12:06, 1.84s/it]
14843it [4:12:08, 1.69s/it]
14844it [4:12:09, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14845it [4:12:10, 1.54s/it]
14846it [4:12:12, 1.48s/it]
14847it [4:12:13, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14848it [4:12:15, 1.44s/it]
14849it [4:12:16, 1.39s/it]
14850it [4:12:17, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14851it [4:12:19, 1.40s/it]
14852it [4:12:20, 1.37s/it]
14853it [4:12:21, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14854it [4:12:24, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14855it [4:12:30, 2.93s/it]
14856it [4:12:31, 2.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14857it [4:12:33, 2.17s/it]
14858it [4:12:34, 1.91s/it]
14859it [4:12:35, 1.73s/it]
14860it [4:12:36, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14861it [4:12:38, 1.53s/it]
14862it [4:12:39, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14863it [4:12:41, 1.55s/it]
14864it [4:12:42, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14865it [4:12:44, 1.50s/it]
14866it [4:12:45, 1.44s/it]
14867it [4:12:46, 1.39s/it]
14868it [4:12:48, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14869it [4:12:49, 1.40s/it]
14870it [4:12:50, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14871it [4:12:52, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14872it [4:12:54, 1.48s/it]
14873it [4:12:55, 1.43s/it]
14874it [4:12:56, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14875it [4:12:58, 1.43s/it]
14876it [4:12:59, 1.38s/it]
14877it [4:13:00, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14878it [4:13:02, 1.47s/it]
14879it [4:13:03, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14880it [4:13:05, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14881it [4:13:09, 2.25s/it]
14882it [4:13:10, 1.97s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14883it [4:13:19, 4.02s/it]
14884it [4:13:20, 3.21s/it]
14885it [4:13:22, 2.64s/it]
14886it [4:13:23, 2.25s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14887it [4:13:25, 2.01s/it]
14888it [4:13:26, 1.80s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14889it [4:13:27, 1.69s/it]
14890it [4:13:29, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14891it [4:13:30, 1.54s/it]
14892it [4:13:31, 1.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14893it [4:13:33, 1.47s/it]
14894it [4:13:34, 1.43s/it]
14895it [4:13:36, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14896it [4:13:37, 1.42s/it]
14897it [4:13:38, 1.40s/it]
14898it [4:13:40, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14899it [4:13:41, 1.42s/it]
14900it [4:13:42, 1.39s/it]
14901it [4:13:44, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14902it [4:13:45, 1.39s/it]
14903it [4:13:47, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14904it [4:13:48, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14905it [4:13:49, 1.41s/it]
14906it [4:13:51, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14907it [4:13:52, 1.40s/it]
14908it [4:13:53, 1.37s/it]
14909it [4:13:55, 1.35s/it]
14910it [4:13:56, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14911it [4:13:58, 1.37s/it]
14912it [4:13:59, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14913it [4:14:08, 3.78s/it]
14914it [4:14:10, 3.04s/it]
14915it [4:14:11, 2.52s/it]
14916it [4:14:12, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14917it [4:14:14, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14918it [4:14:17, 2.31s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14919it [4:14:18, 2.06s/it]
14920it [4:14:20, 1.82s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14921it [4:14:21, 1.84s/it]
14922it [4:14:23, 1.68s/it]
14923it [4:14:24, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14924it [4:14:25, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14925it [4:14:31, 2.87s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14926it [4:14:34, 2.78s/it]
14927it [4:14:35, 2.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14928it [4:14:37, 2.09s/it]
14929it [4:14:38, 1.85s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14930it [4:14:40, 1.74s/it]
14931it [4:14:41, 1.62s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14932it [4:14:42, 1.57s/it]
14933it [4:14:44, 1.50s/it]
14934it [4:14:45, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14935it [4:14:48, 1.92s/it]
14936it [4:14:49, 1.74s/it]
14937it [4:14:51, 1.61s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14938it [4:14:52, 1.58s/it]
14939it [4:14:54, 1.50s/it]
14940it [4:14:55, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14941it [4:14:57, 1.58s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14942it [4:14:58, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14943it [4:14:59, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14944it [4:15:01, 1.46s/it]
14945it [4:15:02, 1.41s/it]
14946it [4:15:04, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14947it [4:15:05, 1.39s/it]
14948it [4:15:06, 1.36s/it]
14949it [4:15:08, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14950it [4:15:13, 2.66s/it]
14951it [4:15:15, 2.25s/it]
14952it [4:15:16, 1.96s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14953it [4:15:22, 3.26s/it]
14954it [4:15:24, 2.69s/it]
14955it [4:15:25, 2.29s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14956it [4:15:28, 2.54s/it]
14957it [4:15:29, 2.17s/it]
14958it [4:15:31, 1.91s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14959it [4:15:32, 1.77s/it]
14960it [4:15:33, 1.64s/it]
14961it [4:15:35, 1.56s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14962it [4:15:36, 1.52s/it]
14963it [4:15:37, 1.45s/it]
14964it [4:15:39, 1.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14965it [4:15:40, 1.42s/it]
14966it [4:15:42, 1.39s/it]
14967it [4:15:43, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14968it [4:15:44, 1.39s/it]
14969it [4:15:46, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14970it [4:15:47, 1.41s/it]
14971it [4:15:48, 1.37s/it]
14972it [4:15:50, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14973it [4:15:51, 1.39s/it]
14974it [4:15:52, 1.36s/it]
14975it [4:15:54, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14976it [4:15:55, 1.37s/it]
14977it [4:15:56, 1.35s/it]
14978it [4:15:58, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14979it [4:15:59, 1.38s/it]
14980it [4:16:01, 1.36s/it]
14981it [4:16:02, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14982it [4:16:03, 1.36s/it]
14983it [4:16:05, 1.34s/it]
14984it [4:16:06, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14985it [4:16:07, 1.36s/it]
14986it [4:16:09, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14987it [4:16:10, 1.36s/it]
14988it [4:16:11, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14989it [4:16:13, 1.38s/it]
14990it [4:16:14, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14991it [4:16:16, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14992it [4:16:17, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14993it [4:16:19, 1.52s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14994it [4:16:20, 1.50s/it]
14995it [4:16:22, 1.44s/it]
14996it [4:16:23, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
14997it [4:16:24, 1.43s/it]
14998it [4:16:26, 1.41s/it]
14999it [4:16:27, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15000it [4:16:29, 1.42s/it]
15001it [4:16:30, 1.38s/it]
15002it [4:16:31, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15003it [4:16:33, 1.37s/it]
15004it [4:16:34, 1.35s/it]
15005it [4:16:35, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15006it [4:16:37, 1.35s/it]
15007it [4:16:38, 1.34s/it]
15008it [4:16:39, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15009it [4:16:44, 2.42s/it]
15010it [4:16:45, 2.08s/it]
15011it [4:16:47, 1.84s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15012it [4:16:48, 1.72s/it]
15013it [4:16:49, 1.60s/it]
15014it [4:16:51, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15015it [4:16:52, 1.48s/it]
15016it [4:16:53, 1.43s/it]
15017it [4:16:55, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15018it [4:16:56, 1.41s/it]
15019it [4:16:58, 1.39s/it]
15020it [4:16:59, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15021it [4:17:01, 1.66s/it]
15022it [4:17:03, 1.56s/it]
15023it [4:17:04, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15024it [4:17:05, 1.48s/it]
15025it [4:17:07, 1.43s/it]
15026it [4:17:08, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15027it [4:17:09, 1.40s/it]
15028it [4:17:11, 1.37s/it]
15029it [4:17:12, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15030it [4:17:14, 1.61s/it]
15031it [4:17:15, 1.52s/it]
15032it [4:17:17, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15033it [4:17:18, 1.45s/it]
15034it [4:17:20, 1.41s/it]
15035it [4:17:21, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15036it [4:17:22, 1.41s/it]
15037it [4:17:24, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15038it [4:17:25, 1.40s/it]
15039it [4:17:26, 1.38s/it]
15040it [4:17:28, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15041it [4:17:29, 1.38s/it]
15042it [4:17:30, 1.36s/it]
15043it [4:17:32, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15044it [4:17:38, 2.87s/it]
15045it [4:17:40, 2.41s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15046it [4:17:41, 2.13s/it]
15047it [4:17:42, 1.89s/it]
15048it [4:17:44, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15049it [4:17:45, 1.64s/it]
15050it [4:17:46, 1.54s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15051it [4:17:48, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15052it [4:17:52, 2.26s/it]
15053it [4:17:53, 1.98s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15054it [4:17:55, 1.84s/it]
15055it [4:17:56, 1.69s/it]
15056it [4:17:57, 1.58s/it]
15057it [4:17:59, 1.50s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15058it [4:18:00, 1.51s/it]
15059it [4:18:02, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15060it [4:18:03, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15061it [4:18:04, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15062it [4:18:06, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15063it [4:18:07, 1.43s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15064it [4:18:09, 1.45s/it]
15065it [4:18:10, 1.41s/it]
15066it [4:18:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15067it [4:18:13, 1.41s/it]
15068it [4:18:14, 1.39s/it]
15069it [4:18:16, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15070it [4:18:17, 1.41s/it]
15071it [4:18:18, 1.38s/it]
15072it [4:18:20, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15073it [4:18:21, 1.38s/it]
15074it [4:18:22, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15075it [4:18:24, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15076it [4:18:26, 1.49s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15077it [4:18:27, 1.47s/it]
15078it [4:18:28, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15079it [4:18:30, 1.49s/it]
15080it [4:18:31, 1.44s/it]
15081it [4:18:33, 1.39s/it]
15082it [4:18:34, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15083it [4:18:35, 1.37s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15084it [4:18:38, 1.71s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15085it [4:18:39, 1.63s/it]
15086it [4:18:40, 1.53s/it]
15087it [4:18:42, 1.46s/it]
15088it [4:18:43, 1.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15089it [4:18:44, 1.42s/it]
15090it [4:18:46, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15091it [4:18:47, 1.39s/it]
15092it [4:18:48, 1.36s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15093it [4:18:50, 1.38s/it]
15094it [4:18:51, 1.36s/it]
15095it [4:18:53, 1.34s/it]
15096it [4:18:54, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15097it [4:18:55, 1.35s/it]
15098it [4:18:57, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15099it [4:18:58, 1.38s/it]
15100it [4:18:59, 1.37s/it]
15101it [4:19:01, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15102it [4:19:02, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15103it [4:19:04, 1.40s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15104it [4:19:05, 1.53s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15105it [4:19:07, 1.52s/it]
15106it [4:19:08, 1.45s/it]
15107it [4:19:09, 1.41s/it]
15108it [4:19:11, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15109it [4:19:13, 1.52s/it]
15110it [4:19:14, 1.47s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15111it [4:19:17, 1.94s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15112it [4:19:18, 1.79s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15113it [4:19:20, 1.67s/it]
15114it [4:19:21, 1.57s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15115it [4:19:23, 1.54s/it]
15116it [4:19:24, 1.48s/it]
15117it [4:19:25, 1.44s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15118it [4:19:27, 1.43s/it]
15119it [4:19:28, 1.40s/it]
15120it [4:19:29, 1.38s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15121it [4:19:31, 1.41s/it]
15122it [4:19:32, 1.37s/it]
15123it [4:19:33, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15124it [4:19:35, 1.38s/it]
15125it [4:19:36, 1.36s/it]
15126it [4:19:38, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15127it [4:19:39, 1.36s/it]
15128it [4:19:40, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15129it [4:19:42, 1.36s/it]
15130it [4:19:43, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15131it [4:19:44, 1.36s/it]
15132it [4:19:46, 1.34s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15133it [4:19:47, 1.38s/it]
15134it [4:19:48, 1.36s/it]
15135it [4:19:50, 1.34s/it]
15136it [4:19:51, 1.33s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15137it [4:19:52, 1.36s/it]
15138it [4:19:54, 1.35s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15139it [4:19:56, 1.51s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15140it [4:20:02, 3.03s/it]
15141it [4:20:04, 2.52s/it]
15142it [4:20:05, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15143it [4:20:10, 3.03s/it]
15144it [4:20:11, 2.51s/it]
15145it [4:20:13, 2.15s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15146it [4:20:18, 3.05s/it]
15147it [4:20:19, 2.52s/it]
15148it [4:20:20, 2.16s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15149it [4:20:28, 3.72s/it]
15150it [4:20:29, 2.99s/it]
15151it [4:20:30, 2.48s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15152it [4:20:33, 2.56s/it]
15153it [4:20:34, 2.19s/it]
15154it [4:20:36, 1.92s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15155it [4:20:37, 1.79s/it]
15156it [4:20:38, 1.64s/it]
15157it [4:20:40, 1.55s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15158it [4:20:44, 2.42s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15159it [4:20:46, 2.13s/it]
15160it [4:20:47, 1.89s/it]
15161it [4:20:48, 1.72s/it]
15162it [4:20:50, 1.59s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15163it [4:20:51, 1.53s/it]
15164it [4:20:52, 1.46s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15165it [4:20:54, 1.45s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15166it [4:20:55, 1.46s/it]
15167it [4:20:57, 1.42s/it]
15168it [4:20:58, 1.39s/it]INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 99999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+
15169it [4:21:02, 2.10s/it]
15170it [4:21:03, 1.86s/it]
15171it [4:21:04, 1.69s/it]
15172it [4:21:05, 1.57s/it]
15173it [4:21:07, 1.49s/it]
15173it [4:21:07, 1.03s/it]
+INFO:__main__:[Dataset 0] No reference_cache_directory set, skipping reference caching
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+/workspace/musubi-tuner/.venv/lib/python3.12/site-packages/torchaudio/_backend/utils.py:213: UserWarning: In 2.9, this function's implementation will be changed to use torchaudio.load_with_torchcodec` under the hood. Some parameters like ``normalize``, ``format``, ``buffer_size``, and ``backend`` will be ignored. We recommend that you port your code to rely directly on TorchCodec's decoder instead: https://docs.pytorch.org/torchcodec/stable/generated/torchcodec.decoders.AudioDecoder.html#torchcodec.decoders.AudioDecoder.
+ warnings.warn(
+/workspace/musubi-tuner/.venv/lib/python3.12/site-packages/torchaudio/_backend/ffmpeg.py:88: UserWarning: torio.io._streaming_media_decoder.StreamingMediaDecoder has been deprecated. This deprecation is part of a large refactoring effort to transition TorchAudio into a maintenance phase. The decoding and encoding capabilities of PyTorch for both audio and video are being consolidated into TorchCodec. Please see https://github.com/pytorch/audio/issues/3902 for more information. It will be removed from the 2.9 release.
+ s = torchaudio.io.StreamReader(src, format, None, buffer_size)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86281_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86281.mp4): No audio stream found in dataset/ltxxx/videos7/86281.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86294_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86294.mp4): No audio stream found in dataset/ltxxx/videos7/86294.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86348_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86348.mp4): No audio stream found in dataset/ltxxx/videos7/86348.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86359_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86359.mp4): No audio stream found in dataset/ltxxx/videos7/86359.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86401_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86401.mp4): No audio stream found in dataset/ltxxx/videos7/86401.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86402_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86402.mp4): No audio stream found in dataset/ltxxx/videos7/86402.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86410_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86410.mp4): No audio stream found in dataset/ltxxx/videos7/86410.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86578_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86578.mp4): No audio stream found in dataset/ltxxx/videos7/86578.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86613_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86613.mp4): No audio stream found in dataset/ltxxx/videos7/86613.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86746_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86746.mp4): No audio stream found in dataset/ltxxx/videos7/86746.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86777_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86777.mp4): No audio stream found in dataset/ltxxx/videos7/86777.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86828_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86828.mp4): No audio stream found in dataset/ltxxx/videos7/86828.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86861_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86861.mp4): No audio stream found in dataset/ltxxx/videos7/86861.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86892_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86892.mp4): No audio stream found in dataset/ltxxx/videos7/86892.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/86952_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/86952.mp4): No audio stream found in dataset/ltxxx/videos7/86952.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 86999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87078_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87078.mp4): No audio stream found in dataset/ltxxx/videos7/87078.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8708_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8708.mp4): No audio stream found in dataset/ltxxx/videos7/8708.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8714_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8714.mp4): No audio stream found in dataset/ltxxx/videos7/8714.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87187_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87187.mp4): No audio stream found in dataset/ltxxx/videos7/87187.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87190_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87190.mp4): No audio stream found in dataset/ltxxx/videos7/87190.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87253_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87253.mp4): No audio stream found in dataset/ltxxx/videos7/87253.mp4
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87252_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87252.mp4): No audio stream found in dataset/ltxxx/videos7/87252.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87256_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87256.mp4): No audio stream found in dataset/ltxxx/videos7/87256.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87280_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87280.mp4): No audio stream found in dataset/ltxxx/videos7/87280.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87306_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87306.mp4): No audio stream found in dataset/ltxxx/videos7/87306.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87339_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87339.mp4): No audio stream found in dataset/ltxxx/videos7/87339.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87436_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87436.mp4): No audio stream found in dataset/ltxxx/videos7/87436.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87457_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87457.mp4): No audio stream found in dataset/ltxxx/videos7/87457.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87490_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87490.mp4): No audio stream found in dataset/ltxxx/videos7/87490.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87503_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87503.mp4): No audio stream found in dataset/ltxxx/videos7/87503.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87544_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87544.mp4): No audio stream found in dataset/ltxxx/videos7/87544.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87545_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87545.mp4): No audio stream found in dataset/ltxxx/videos7/87545.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87610_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87610.mp4): No audio stream found in dataset/ltxxx/videos7/87610.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87627_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87627.mp4): No audio stream found in dataset/ltxxx/videos7/87627.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87628_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87628.mp4): No audio stream found in dataset/ltxxx/videos7/87628.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87657_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87657.mp4): No audio stream found in dataset/ltxxx/videos7/87657.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8771_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8771.mp4): No audio stream found in dataset/ltxxx/videos7/8771.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87712_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87712.mp4): No audio stream found in dataset/ltxxx/videos7/87712.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87739_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87739.mp4): No audio stream found in dataset/ltxxx/videos7/87739.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87759_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87759.mp4): No audio stream found in dataset/ltxxx/videos7/87759.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87776_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87776.mp4): No audio stream found in dataset/ltxxx/videos7/87776.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87802_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87802.mp4): No audio stream found in dataset/ltxxx/videos7/87802.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87816_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87816.mp4): No audio stream found in dataset/ltxxx/videos7/87816.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87846_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87846.mp4): No audio stream found in dataset/ltxxx/videos7/87846.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87915_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87915.mp4): No audio stream found in dataset/ltxxx/videos7/87915.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87947_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87947.mp4): No audio stream found in dataset/ltxxx/videos7/87947.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/87954_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/87954.mp4): No audio stream found in dataset/ltxxx/videos7/87954.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 87999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8802_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8802.mp4): No audio stream found in dataset/ltxxx/videos7/8802.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88019_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88019.mp4): No audio stream found in dataset/ltxxx/videos7/88019.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88066_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88066.mp4): No audio stream found in dataset/ltxxx/videos7/88066.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88096_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88096.mp4): No audio stream found in dataset/ltxxx/videos7/88096.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88131_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88131.mp4): No audio stream found in dataset/ltxxx/videos7/88131.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88152_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88152.mp4): No audio stream found in dataset/ltxxx/videos7/88152.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88167_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88167.mp4): No audio stream found in dataset/ltxxx/videos7/88167.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88195_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88195.mp4): No audio stream found in dataset/ltxxx/videos7/88195.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88240_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88240.mp4): No audio stream found in dataset/ltxxx/videos7/88240.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8828_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8828.mp4): No audio stream found in dataset/ltxxx/videos7/8828.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88362_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88362.mp4): No audio stream found in dataset/ltxxx/videos7/88362.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88411_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88411.mp4): No audio stream found in dataset/ltxxx/videos7/88411.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88472_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88472.mp4): No audio stream found in dataset/ltxxx/videos7/88472.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88578_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88578.mp4): No audio stream found in dataset/ltxxx/videos7/88578.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88590_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88590.mp4): No audio stream found in dataset/ltxxx/videos7/88590.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88635_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88635.mp4): No audio stream found in dataset/ltxxx/videos7/88635.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8868_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8868.mp4): No audio stream found in dataset/ltxxx/videos7/8868.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88697_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88697.mp4): No audio stream found in dataset/ltxxx/videos7/88697.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88838_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88838.mp4): No audio stream found in dataset/ltxxx/videos7/88838.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88851_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88851.mp4): No audio stream found in dataset/ltxxx/videos7/88851.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88859_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88859.mp4): No audio stream found in dataset/ltxxx/videos7/88859.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88896_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88896.mp4): No audio stream found in dataset/ltxxx/videos7/88896.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88965_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88965.mp4): No audio stream found in dataset/ltxxx/videos7/88965.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/88995_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/88995.mp4): No audio frames decoded from dataset/ltxxx/videos7/88995.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 88999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89017_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89017.mp4): No audio stream found in dataset/ltxxx/videos7/89017.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89066_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89066.mp4): No audio stream found in dataset/ltxxx/videos7/89066.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8909_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8909.mp4): No audio stream found in dataset/ltxxx/videos7/8909.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/891_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/891.mp4): No audio stream found in dataset/ltxxx/videos7/891.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8914_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8914.mp4): No audio stream found in dataset/ltxxx/videos7/8914.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89146_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89146.mp4): No audio stream found in dataset/ltxxx/videos7/89146.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89166_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89166.mp4): No audio stream found in dataset/ltxxx/videos7/89166.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89169_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89169.mp4): No audio stream found in dataset/ltxxx/videos7/89169.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89216_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89216.mp4): No audio stream found in dataset/ltxxx/videos7/89216.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89234_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89234.mp4): No audio stream found in dataset/ltxxx/videos7/89234.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89265_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89265.mp4): No audio stream found in dataset/ltxxx/videos7/89265.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89345_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89345.mp4): No audio stream found in dataset/ltxxx/videos7/89345.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89393_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89393.mp4): No audio stream found in dataset/ltxxx/videos7/89393.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89404_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89404.mp4): No audio stream found in dataset/ltxxx/videos7/89404.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/8942_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/8942.mp4): No audio stream found in dataset/ltxxx/videos7/8942.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89437_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89437.mp4): No audio stream found in dataset/ltxxx/videos7/89437.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89545_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89545.mp4): No audio stream found in dataset/ltxxx/videos7/89545.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89597_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89597.mp4): No audio stream found in dataset/ltxxx/videos7/89597.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89637_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89637.mp4): No audio stream found in dataset/ltxxx/videos7/89637.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89724_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89724.mp4): No audio stream found in dataset/ltxxx/videos7/89724.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89747_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89747.mp4): No audio stream found in dataset/ltxxx/videos7/89747.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89759_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89759.mp4): No audio stream found in dataset/ltxxx/videos7/89759.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/89921_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/89921.mp4): No audio stream found in dataset/ltxxx/videos7/89921.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 8999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 89999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90004_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90004.mp4): No audio stream found in dataset/ltxxx/videos7/90004.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90073_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90073.mp4): No audio stream found in dataset/ltxxx/videos7/90073.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90096_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90096.mp4): No audio stream found in dataset/ltxxx/videos7/90096.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90152_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90152.mp4): No audio stream found in dataset/ltxxx/videos7/90152.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90179_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90179.mp4): No audio stream found in dataset/ltxxx/videos7/90179.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90221_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90221.mp4): No audio stream found in dataset/ltxxx/videos7/90221.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90238_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90238.mp4): No audio stream found in dataset/ltxxx/videos7/90238.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90362_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90362.mp4): No audio stream found in dataset/ltxxx/videos7/90362.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90375_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90375.mp4): No audio stream found in dataset/ltxxx/videos7/90375.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/9039_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/9039.mp4): No audio stream found in dataset/ltxxx/videos7/9039.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90414_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90414.mp4): No audio stream found in dataset/ltxxx/videos7/90414.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90435_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90435.mp4): No audio stream found in dataset/ltxxx/videos7/90435.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90482_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90482.mp4): No audio stream found in dataset/ltxxx/videos7/90482.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90520_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90520.mp4): No audio stream found in dataset/ltxxx/videos7/90520.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90548_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90548.mp4): No audio stream found in dataset/ltxxx/videos7/90548.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90573_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90573.mp4): No audio stream found in dataset/ltxxx/videos7/90573.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/9060_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/9060.mp4): No audio stream found in dataset/ltxxx/videos7/9060.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90608_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90608.mp4): No audio stream found in dataset/ltxxx/videos7/90608.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90630_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90630.mp4): No audio stream found in dataset/ltxxx/videos7/90630.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90661_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90661.mp4): No audio stream found in dataset/ltxxx/videos7/90661.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90672_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90672.mp4): No audio stream found in dataset/ltxxx/videos7/90672.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90710_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90710.mp4): No audio stream found in dataset/ltxxx/videos7/90710.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90715_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90715.mp4): No audio stream found in dataset/ltxxx/videos7/90715.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90804_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90804.mp4): No audio stream found in dataset/ltxxx/videos7/90804.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90814_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90814.mp4): No audio stream found in dataset/ltxxx/videos7/90814.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90831_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90831.mp4): No audio stream found in dataset/ltxxx/videos7/90831.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90901_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90901.mp4): No audio stream found in dataset/ltxxx/videos7/90901.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90952_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90952.mp4): No audio stream found in dataset/ltxxx/videos7/90952.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/90967_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/90967.mp4): No audio stream found in dataset/ltxxx/videos7/90967.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 90999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91022_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91022.mp4): No audio stream found in dataset/ltxxx/videos7/91022.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91049_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91049.mp4): No audio stream found in dataset/ltxxx/videos7/91049.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/9108_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/9108.mp4): No audio stream found in dataset/ltxxx/videos7/9108.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91095_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91095.mp4): No audio stream found in dataset/ltxxx/videos7/91095.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91096_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91096.mp4): No audio stream found in dataset/ltxxx/videos7/91096.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91100_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91100.mp4): No audio stream found in dataset/ltxxx/videos7/91100.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91143_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91143.mp4): No audio stream found in dataset/ltxxx/videos7/91143.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91155_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91155.mp4): No audio stream found in dataset/ltxxx/videos7/91155.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91173_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91173.mp4): No audio stream found in dataset/ltxxx/videos7/91173.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91214.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91215.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91216.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91217.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91218.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91219.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91220.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91221.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91222.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91223.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91224.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91225.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91226.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91227.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91228.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91229.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91230.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91231.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91232.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91233.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91234.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91235.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91231_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91231.mp4): No audio stream found in dataset/ltxxx/videos7/91231.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91236.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91237.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91238.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91239.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91240.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91241.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91242.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91243.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91244.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91245.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91246.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91243_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91243.mp4): No audio stream found in dataset/ltxxx/videos7/91243.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91247.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91248.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91249.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91250.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91251.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91252.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91253.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91254.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91255.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91256.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91257.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91258.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91259.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91260.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91261.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91262.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91263.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91264.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91265.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91266.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91267.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91268.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91269.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91270.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91271.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91272.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91273.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91274.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91275.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91276.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91277.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91278.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91279.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91280.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91281.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91282.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91283.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91284.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91285.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91286.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91287.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91288.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91289.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91290.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91291.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91292.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91293.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91294.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91295.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91296.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91297.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91298.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91299.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91300.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91301.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91302.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91303.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91304.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91305.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91306.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91301_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91301.mp4): No audio stream found in dataset/ltxxx/videos7/91301.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91307.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91308.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91309.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91310.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91311.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91312.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91313.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91314.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91315.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91316.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91317.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91318.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91319.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9132.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91320.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91321.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91322.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91323.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91324.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91325.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91326.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91327.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91328.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91329.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9133.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91330.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91331.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91332.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91333.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91334.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91335.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91336.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91337.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91333_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91333.mp4): No audio stream found in dataset/ltxxx/videos7/91333.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91338.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91339.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9134.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91340.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91341.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91342.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91343.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91344.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91345.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91346.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91347.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91348.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91349.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9135.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91350.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91351.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91352.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91353.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91354.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91355.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91356.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91357.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91358.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91359.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9136.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91360.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91361.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91362.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91363.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91364.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91365.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91366.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91367.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91368.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91369.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9137.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91370.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91371.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91372.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91373.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91374.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91375.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91376.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91377.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91378.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91379.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9138.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91380.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91381.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91382.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91383.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91384.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91385.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91386.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91387.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91388.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91389.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9139.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91390.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91391.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91392.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91393.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91394.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91395.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91396.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91397.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91398.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91399.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9140.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91400.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91401.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91402.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91403.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91404.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91405.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91406.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91407.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91408.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91409.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9141.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91410.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91411.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91412.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91413.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91414.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91415.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91416.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91417.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91418.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91419.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9142.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91420.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91421.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91422.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91423.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91424.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91425.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91426.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91427.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91428.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91429.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9143.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91430.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91431.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91432.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91433.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91434.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91435.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91436.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91437.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91438.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91439.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9144.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91440.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91441.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91442.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91439_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91439.mp4): No audio stream found in dataset/ltxxx/videos7/91439.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91443.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91444.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91445.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91446.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91447.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91448.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91449.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91446_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91446.mp4): No audio stream found in dataset/ltxxx/videos7/91446.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9145.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91450.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91451.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91452.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91453.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91454.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91455.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91456.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91457.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91458.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91459.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9146.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91460.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91456_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91456.mp4): No audio stream found in dataset/ltxxx/videos7/91456.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91461.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91462.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91463.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91464.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91465.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91466.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91467.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91468.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91469.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9147.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91470.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91471.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91472.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91473.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91474.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91475.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91476.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91477.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91478.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91479.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9148.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91480.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91481.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91482.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91483.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91484.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91485.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91486.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91487.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91488.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91489.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9149.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91490.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91491.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91492.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91493.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91494.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91495.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91496.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91497.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91498.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91499.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9150.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91500.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91495_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91495.mp4): No audio stream found in dataset/ltxxx/videos7/91495.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91501.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91502.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91503.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91504.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91505.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91506.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91507.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91508.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91509.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9151.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91510.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91511.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91512.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91513.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91514.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91515.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91516.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91517.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91518.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91519.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9152.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91520.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91521.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91522.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91523.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91524.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91525.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91526.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91527.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91528.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91529.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9153.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91530.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91531.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91528_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91528.mp4): No audio stream found in dataset/ltxxx/videos7/91528.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91532.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91533.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91534.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91535.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91536.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91537.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91538.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91539.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9154.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91540.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91541.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91542.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91543.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91544.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91545.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91546.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91547.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91548.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91549.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9155.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91550.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91551.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91552.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91553.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91554.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91555.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91556.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91557.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91558.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91559.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9156.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91560.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91561.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91562.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91563.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91564.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91565.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91566.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91567.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91568.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91569.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9157.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91570.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91571.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91572.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91573.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91574.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91575.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91576.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91577.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91578.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91579.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9158.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91580.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91581.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91582.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91583.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91584.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91585.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91586.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91587.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91588.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91589.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9159.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91590.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91591.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91592.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91593.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91594.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91595.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91596.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91597.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91598.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91599.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9160.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91600.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91601.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91602.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91603.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91604.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91605.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91606.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91607.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91608.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91609.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9161.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91610.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91611.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91612.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91613.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91614.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91615.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91616.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91617.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91618.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91619.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9162.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91620.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91621.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91622.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91623.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91624.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91625.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91626.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91627.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91628.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91629.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9163.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91630.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91631.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91632.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91633.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91634.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91635.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91636.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91637.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91638.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91639.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9164.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91640.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91641.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91642.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91643.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91644.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91645.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91646.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91647.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91648.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91649.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9165.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91650.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91651.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91652.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91653.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91654.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91655.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91656.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91657.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91658.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91659.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9166.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91660.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91661.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91662.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91663.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91664.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91665.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91666.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91667.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91668.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91669.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9167.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91670.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91671.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91672.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91673.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91674.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91675.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91676.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91677.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91678.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91679.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9168.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91680.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91681.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91682.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91683.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91684.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91685.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91686.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91687.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91688.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91689.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9169.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91690.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91691.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91692.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91693.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91694.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91695.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91696.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91697.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91698.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91699.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9170.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91700.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91701.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91702.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91703.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91704.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91705.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91706.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91707.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91708.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91709.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9171.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91710.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91711.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91712.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91713.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91714.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91715.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91716.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91711_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91711.mp4): No audio stream found in dataset/ltxxx/videos7/91711.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91717.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91718.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91719.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9172.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91720.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91721.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91722.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91723.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91724.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91725.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91726.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91727.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91728.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91729.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9173.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91730.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91731.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91732.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91733.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91734.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91735.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91736.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91737.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91738.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91739.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9174.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91740.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91741.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91742.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91743.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91744.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91745.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91746.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91747.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91748.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91749.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9175.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91750.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91751.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91752.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91753.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91754.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91755.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91756.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91757.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91758.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91759.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9176.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91760.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91761.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91762.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91763.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91764.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91765.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91766.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91767.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91768.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91769.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9177.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91770.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91771.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91772.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91773.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91774.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91775.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91776.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91777.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91778.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91779.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9178.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91780.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91781.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91782.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91783.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91784.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91785.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91786.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91787.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91784_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91784.mp4): No audio stream found in dataset/ltxxx/videos7/91784.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91788.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91789.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9179.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91790.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91791.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91792.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91793.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91794.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91791_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91791.mp4): No audio stream found in dataset/ltxxx/videos7/91791.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91795.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91796.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91797.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91798.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91799.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9180.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91799_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91799.mp4): No audio stream found in dataset/ltxxx/videos7/91799.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91800.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91801.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91802.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91803.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91804.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91805.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91806.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91807.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91808.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91809.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9181.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91810.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91811.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91812.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91813.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91814.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91815.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91816.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91817.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91818.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91819.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9182.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91820.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91821.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91822.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91823.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91824.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91825.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91826.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91827.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91823_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91823.mp4): No audio stream found in dataset/ltxxx/videos7/91823.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91828.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91829.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9183.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91830.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91831.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91832.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91833.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91834.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91835.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91836.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91837.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91838.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91839.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9184.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91840.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91841.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91842.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91838_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91838.mp4): No audio stream found in dataset/ltxxx/videos7/91838.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91843.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91844.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91845.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91846.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91847.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91848.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91849.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9185.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91850.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91851.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91852.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91853.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91854.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91855.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91856.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91857.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91858.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91859.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9186.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91860.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91861.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91862.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91863.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91864.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91865.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91866.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91867.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91868.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91869.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9187.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91870.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91871.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91872.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91873.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91874.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91875.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91876.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91877.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91878.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91879.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9188.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91880.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91881.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91882.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91883.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91884.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91885.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91886.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91887.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91888.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91889.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9189.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91890.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91891.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91892.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91893.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91894.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91895.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91896.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91897.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91898.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91899.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9190.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91900.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91901.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91902.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91903.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91904.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91900_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91900.mp4): No audio stream found in dataset/ltxxx/videos7/91900.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91905.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91906.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91907.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91908.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91909.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9191.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91910.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91911.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91912.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91908_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91908.mp4): No audio stream found in dataset/ltxxx/videos7/91908.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91913.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91914.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91915.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91916.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91917.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91918.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91919.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9192.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91922.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91923.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91924.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91925.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91926.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91927.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91928.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91929.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9193.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91930.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91931.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91932.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91933.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91934.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91935.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91936.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91937.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91938.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91939.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9194.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91940.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91941.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91942.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91943.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91944.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91945.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91946.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91947.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91948.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91949.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9195.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91950.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91951.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91952.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91953.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91954.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91955.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91956.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91957.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91958.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91959.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9196.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91960.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91961.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91962.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91963.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91964.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91965.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91966.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91967.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91968.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91969.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9197.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91970.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91971.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91972.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91973.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91974.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91975.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91976.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91977.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91978.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91979.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9198.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91980.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91981.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91982.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91983.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91984.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91985.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91986.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91987.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91988.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91989.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9199.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91988_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91988.mp4): No audio stream found in dataset/ltxxx/videos7/91988.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91990.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91991.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91992.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91993.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91994.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91995.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91996.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91997.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91998.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/91993_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/91993.mp4): No audio stream found in dataset/ltxxx/videos7/91993.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 91999.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 920.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9200.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92000.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92001.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92002.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92003.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92004.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92005.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92006.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92007.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92008.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92009.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9201.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92010.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92011.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92012.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92013.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92014.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92015.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92016.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92017.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92018.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92019.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9202.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92020.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92021.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92022.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92023.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92024.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92025.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92026.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92027.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92028.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92029.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9203.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92030.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92031.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92032.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/92029_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/92029.mp4): No audio stream found in dataset/ltxxx/videos7/92029.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92033.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92034.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92035.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92036.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92037.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92038.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92039.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9204.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92040.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92041.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92042.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92043.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92044.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92045.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92046.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92047.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92048.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92049.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9205.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92050.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92051.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92052.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92053.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92054.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92055.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92056.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92057.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92058.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92059.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9206.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92060.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92061.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92062.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92063.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92064.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92065.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92066.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92067.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92068.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92069.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9207.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92070.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92071.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92072.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92073.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92074.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92075.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92076.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92077.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92078.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92079.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9208.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92080.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92081.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92082.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92083.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92084.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92085.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92086.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92087.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92088.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92089.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9209.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92090.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92091.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92092.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92093.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92094.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92095.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92096.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92097.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92098.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92099.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 921.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9210.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92100.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92101.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92102.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92103.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92104.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92105.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92106.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92107.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92108.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92109.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9211.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92110.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92111.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92112.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92113.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92114.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92115.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92116.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92117.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92118.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92119.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9212.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92120.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92121.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92122.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92123.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92124.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92125.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92126.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92127.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92128.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92129.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 9213.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92130.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, threshold=1)
+WARNING:__main__:Skipping audio cache for dataset/ltxxx/videos7/92128_00000-241.mp4 (audio_path=dataset/ltxxx/videos7/92128.mp4): No audio stream found in dataset/ltxxx/videos7/92128.mp4
+INFO:musubi_tuner.dataset.image_video_dataset:Skipping FPS resampling for 92131.mp4: source 24.000 FPS within threshold of target 25.0 FPS (ceil=24, diff=1.0, thres